bundle_hack 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3c07038f47d540e8eab90ea819c3a85e5672af8de6aca3e61e388cde3654406
4
- data.tar.gz: 91dde30d342fee125343b625d3d7f5a4349cb6d6679208403de4b44fc81f7bf1
3
+ metadata.gz: fe93e30e15729c140b62935a71affb69ddac3881e7e32df372a8312f823ac556
4
+ data.tar.gz: 7770f64cc510ee4bf9681dcb79066da0bbe682330585528fe96354c23fb57988
5
5
  SHA512:
6
- metadata.gz: 8ae6b9769b44c75e47f67c6d72fe1a7286eeb2a21c89f14884742bf6f6eb1d3b5bcdae0798aeabb1394ba84efb06b07edb6a92a4312968bf82f823575e938e3d
7
- data.tar.gz: 4b10042cc4bffe5271747702bb36fa5f66b0e0ae31e2536f26bf3852c3aa1c96557f325e46809b0bd43a80db1b5d80b13683ebff99adbce1fa6bd140cce1e70d
6
+ metadata.gz: 5555fb5b87649fbf1358ed55b64fe0bed53c50bee791d08ccf6173db73c662b2eb6f918befbc52990db7022fdad8d3051b181f277536800d5ce354f8d4f09943
7
+ data.tar.gz: 60c912e07743a298225887b97ce6bc15b25b321cabb6aeb2dbae5b2238869fd5b82feed4b80feb8106e734995530c1b6f9d56fc74b901bede61a1898a7a89498
data/README.md CHANGED
@@ -6,19 +6,9 @@ All changes are made local to your bundle and very little magic is used.
6
6
 
7
7
  ## Installation
8
8
 
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'bundle_hack'
13
9
  ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install bundle_hack
10
+ bundler plugin install bundle_hack
11
+ ```
22
12
 
23
13
  ## Usage
24
14
 
@@ -7,7 +7,7 @@ module BundleHack
7
7
  command 'hack:restore:all'
8
8
 
9
9
  def exec(command, args)
10
- Sandbox.new(args.first).create if command == 'hack'
10
+ Sandbox.new(args.first).build if command == 'hack'
11
11
  end
12
12
  end
13
13
  end
@@ -23,7 +23,8 @@ module BundleHack
23
23
  private
24
24
 
25
25
  def locate_gems(parser)
26
- # TODO: Read from .bundle_hack.yml
26
+ # TODO: Read from .bundle_hack.yml so we can hack more than one gem at
27
+ # once.
27
28
  [@gem_name].map { |gem_name| locate_gem(gem_name, parser) }
28
29
  end
29
30
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BundleHack
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundle_hack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell