fast_bundler 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/fast_bundler +3 -15
- data/lib/fast_bundler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c8de50a4860bdfdec07630e66ab6a2bfc515a54
|
4
|
+
data.tar.gz: bf848dc2e38f3425b44d8f9572acfc5fd3e5d18a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
-
|
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')
|
data/lib/fast_bundler/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2014-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|