new-command 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 226ae3071fe40f07caea5ffceb4a2fb867a1e218
4
- data.tar.gz: 9999cd6f10bd5d547bd68d26a2619556c5fe0b54
3
+ metadata.gz: 16a78225352f7f608a679166f24ad01e9034b993
4
+ data.tar.gz: 876a3487f2b0166cad9ee36ac8c1462fb70286a2
5
5
  SHA512:
6
- metadata.gz: 5387d07d56c26c03c5da43fd2c22c77b0d6e00c90bf999d4a04520be0ded5573f86820eeaa81cddb0b6512342a4cb7aeb2104ef2d796d6150417f2f223bb4e58
7
- data.tar.gz: 8d7e2ff9c2799dad138ba9becc8423fb86a514b9d317bfdb9232f5fea5f4fc84ede23e452618af63b758dc3b6bf0c6c38c0f14212972b58178f6f4714933e961
6
+ metadata.gz: ecdae0cf7ec8341c432de49bfc8e835cd9a5b6651218da15a8a4ffe9836aa7a572e58f238ec3ff98607915e591fe0106a567319f23b5939646c492039defdd87
7
+ data.tar.gz: d0fde44eaafdc42540374c805b5f4090df46983aace2710dc0fcbe0d4bac20662fa4532b282b6c4f4c06d48c3d591891d3fa62415cd46e7a638a965e58481420
@@ -1,5 +1,5 @@
1
1
  module New
2
2
  module Command
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
data/plugins.rb CHANGED
@@ -1,9 +1,12 @@
1
- module MyBundlerPlugin
2
- class Plugin < Bundler::Plugin::API
3
- command "new-command"
4
-
5
- def exec(command, args)
6
- puts "Hello World"
7
- end
8
- end
1
+ # module MyBundlerPlugin
2
+ # class Plugin < Bundler::Plugin::API
3
+ # command "new-command"
4
+ #
5
+ # def exec(command, args)
6
+ # puts "Hello World"
7
+ # end
8
+ # end
9
+ # end
10
+ Bundler::Plugin::API.hook "before-install-all" do |deps|
11
+ puts "Installing #{deps.map(&:name).join(', ')} 👍!"
9
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: new-command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fregdee