breezer 0.7.7 → 0.8.0
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/Gemfile.lock +1 -1
- data/lib/breezer/version.rb +1 -1
- data/plugins.rb +1 -10
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5c11295ed89ea1e008c8379fdfe97c784baafcc21f45480933ec08152f672d0
|
4
|
+
data.tar.gz: a4d4d1d78846cba8d9bd51b963ac7890a7aedfd4bd215ef176a941d47ce3eb9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77868b04437261b0cd8b2aec69dd52b47caae500d49f2bb494f246f6045c5c1aa0e2bd1e2c69f8d93541d0d3dc7262c296631605453e7e5b5968366a328ece2b
|
7
|
+
data.tar.gz: c61183d781ec46069e7618955bd3baf00f9a880fdd93a439de5034fbcdb027cbe66893de1d3ebdc5aa2101a16d986e399ba3822af7dada36fb820bb7947cae59
|
data/Gemfile.lock
CHANGED
data/lib/breezer/version.rb
CHANGED
data/plugins.rb
CHANGED
@@ -5,19 +5,10 @@ require 'breezer'
|
|
5
5
|
|
6
6
|
# This is the plugin for bundler
|
7
7
|
class Breezer < Bundler::Plugin::API
|
8
|
-
|
9
|
-
command 'freeze'
|
8
|
+
command 'breeze'
|
10
9
|
|
11
|
-
# The exec method will be called with the `command` and the `args`.
|
12
|
-
# This is where you should handle all logic and functionality
|
13
10
|
def exec(_command, args)
|
14
11
|
r = Breezer::Command.run!(args)
|
15
12
|
exit(r == false ? 2 : 0)
|
16
13
|
end
|
17
14
|
end
|
18
|
-
|
19
|
-
# #!/usr/bin/env ruby
|
20
|
-
|
21
|
-
|
22
|
-
# r = Breezer::Command.run!(ARGV)
|
23
|
-
# exit(r == false ? 2 : 0)
|