diff options
author | Asutosh Palai <asupalai@gmail.com> | 2016-05-30 17:43:13 +0530 |
---|---|---|
committer | Asutosh Palai <asupalai@gmail.com> | 2016-07-03 09:38:56 +0530 |
commit | 556a5bc1431d22c04ab195ca7950ab5ecd49f651 (patch) | |
tree | 410a4704e8ab61ec01f27ced204b824fe6c26a95 /lib/bundler/plugin/api | |
parent | 5d24e18c110ba7fb210d9c29f931754466b7f2ea (diff) | |
download | bundler-556a5bc1431d22c04ab195ca7950ab5ecd49f651.tar.gz |
A base for source plugin
Diffstat (limited to 'lib/bundler/plugin/api')
-rw-r--r-- | lib/bundler/plugin/api/source.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/bundler/plugin/api/source.rb b/lib/bundler/plugin/api/source.rb new file mode 100644 index 0000000000..4f2022d97e --- /dev/null +++ b/lib/bundler/plugin/api/source.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Bundler + module Plugin::Api::Source + def say_hi + puts "Hi people" + end + end +end |