bundler-next 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 +4 -4
- data/lib/bundler/next.rb +2 -4
- data/lib/bundler/next/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 790f2941b88392a3815be3e0e21f4d2a131f1934
|
|
4
|
+
data.tar.gz: c77fb4ead809b4dafe497d7906a7a3647fb3aebd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5cf02777782a66db314ca0619c760143573dadf072563430262cb202cb2209f105686b61e3c3584deda4d0df95e6a1a2ae6b10f311a968db5750bd71698ae399
|
|
7
|
+
data.tar.gz: 5afdea19de0ca8e541df50ba30b664a872fd8c410557ddea514960a5239c2b7e37ff55267a57cf4c7fdd134abf49127e11a6978e2c8f02467251e282e6492269
|
data/lib/bundler/next.rb
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
require "bundler/next/version"
|
|
2
2
|
|
|
3
3
|
module Bundler
|
|
4
|
-
|
|
5
|
-
command
|
|
4
|
+
module Next
|
|
5
|
+
Bundler::Plugin::API.command('next', self)
|
|
6
6
|
|
|
7
|
-
# The exec method will be called with the `command` and the `args`.
|
|
8
|
-
# This is where you should handle all logic and functionality
|
|
9
7
|
def exec(command, args)
|
|
10
8
|
puts "You called " + command + " with args: " + args.inspect
|
|
11
9
|
end
|
data/lib/bundler/next/version.rb
CHANGED