fast_bundler 0.0.2 → 0.0.3

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: 164ad3b0f1a89975a3efc279829c6f9b2c2920a0
4
- data.tar.gz: 0d8a7d924efbfe11f5d6ba3bf25289e2d4834160
3
+ metadata.gz: 3c8de50a4860bdfdec07630e66ab6a2bfc515a54
4
+ data.tar.gz: bf848dc2e38f3425b44d8f9572acfc5fd3e5d18a
5
5
  SHA512:
6
- metadata.gz: df1b50876415a541d8f264863855281fa4ba83547529c4d02f4d0e670d212df91eb3fda34d98b5f1e0963a869f16764266a2b18183741ea439aa438f1fa2af6e
7
- data.tar.gz: a5856e079db3cfcf50f0f76d29c219374a2ff2df6c6e2c41edc1cb0f98c6fb8fae3ed30b45dc10a2ad2b41ef415aafe94c2a530d044cb9456823962a1edb9f02
6
+ metadata.gz: 434495c85b77fbfcd01e360b00def817dcb7ce163436760a5427540bb5475aeca763ae06f3ca592794875afaedd7f50ef04b2e85e3ef2946b03f91dbaeeb745d
7
+ data.tar.gz: 6223004c7378890252a92c14347380e996aa80d6b1674a699220345a5333c07dd33845a916d54a7a6d46bb03ca2c3ac133267bffdb84ac75d1e37dbeea94b36d
data/bin/fast_bundler CHANGED
@@ -8,22 +8,10 @@ require 'bundler'
8
8
  module Bundler
9
9
  class Source
10
10
  class Rubygems
11
- API_REQUEST_LIMIT = 1000
11
+ remove_const :API_REQUEST_LIMIT
12
+ const_set :API_REQUEST_LIMIT, 1000
12
13
  end
13
14
  end
14
15
  end
15
- # Check if an older version of bundler is installed
16
- $LOAD_PATH.each do |path|
17
- if path =~ %r'/bundler-0.(\d+)' && $1.to_i < 9
18
- err = "Looks like you have a version of bundler that's older than 0.9.\n"
19
- err << "Please remove your old versions.\n"
20
- err << "An easy way to do this is by running `gem cleanup bundler`."
21
- abort(err)
22
- end
23
- end
24
16
 
25
- require 'bundler/friendly_errors'
26
- Bundler.with_friendly_errors do
27
- require 'bundler/cli'
28
- Bundler::CLI.start(ARGV, :debug => true)
29
- end
17
+ load Gem.bin_path('bundler', 'bundler')
@@ -1,3 +1,3 @@
1
1
  module FastBundler
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Galisteo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-06 00:00:00.000000000 Z
11
+ date: 2014-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler