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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65f3c5a53b5a7adfd0e1ed5acb4541517222e1351200cf267f7a057326c07cdb
4
- data.tar.gz: b71f63a9150661156b45e41384b6d7ad2ae602d04ecc868a0f2a28b79b9e067b
3
+ metadata.gz: c5c11295ed89ea1e008c8379fdfe97c784baafcc21f45480933ec08152f672d0
4
+ data.tar.gz: a4d4d1d78846cba8d9bd51b963ac7890a7aedfd4bd215ef176a941d47ce3eb9d
5
5
  SHA512:
6
- metadata.gz: a57d11b99a4efbfcc340a82e302818eac7d291a5a529966d7ee31b2ef633638a31acaa3498a8835139234930d410669df6e1f4be0045cd7586bddfa3c158d8c0
7
- data.tar.gz: e3a404d076be324308b2fd3635febb183df6f03bcac9fbb527ce013130385dc99ba31315f6046e669395dea9a4df4e8355594988aaef28911ef64a42873c6dbd
6
+ metadata.gz: 77868b04437261b0cd8b2aec69dd52b47caae500d49f2bb494f246f6045c5c1aa0e2bd1e2c69f8d93541d0d3dc7262c296631605453e7e5b5968366a328ece2b
7
+ data.tar.gz: c61183d781ec46069e7618955bd3baf00f9a880fdd93a439de5034fbcdb027cbe66893de1d3ebdc5aa2101a16d986e399ba3822af7dada36fb820bb7947cae59
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- breezer (0.7.7)
4
+ breezer (0.8.0)
5
5
  bundler (> 1.0)
6
6
 
7
7
  GEM
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Breezer
4
- VERSION = '0.7.7'
4
+ VERSION = '0.8.0'
5
5
  end
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
- # Register this class as a handler for the `my_command` command
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: breezer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Aubin