mpapis-bundler 1.0.21 → 1.0.21.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -20,3 +20,6 @@ spec/reports
20
20
 
21
21
  # Netbeans
22
22
  nbproject
23
+
24
+ # RubyMine
25
+ .idea
@@ -216,7 +216,9 @@ module Bundler
216
216
  Bundler.settings.without = opts[:without]
217
217
  Bundler.ui.be_quiet! if opts[:quiet]
218
218
 
219
- Gem.load_plugins
219
+ # rubygems plugins sometimes hook into the gem install process
220
+ Gem.load_env_plugins if Gem.respond_to?(:load_env_plugins)
221
+
220
222
  Installer.install(Bundler.root, Bundler.definition, opts)
221
223
  Bundler.load.cache if Bundler.root.join("vendor/cache").exist? && !options["no-cache"]
222
224
 
@@ -266,7 +268,9 @@ module Bundler
266
268
  end
267
269
 
268
270
  opts = {"update" => true, "local" => options[:local]}
269
- Gem.load_plugins
271
+ # rubygems plugins sometimes hook into the gem install process
272
+ Gem.load_env_plugins if Gem.respond_to?(:load_env_plugins)
273
+
270
274
  Installer.install Bundler.root, Bundler.definition, opts
271
275
  Bundler.load.cache if Bundler.root.join("vendor/cache").exist?
272
276
  Bundler.ui.confirm "Your bundle is updated! " +
@@ -2,5 +2,5 @@ module Bundler
2
2
  # We're doing this because we might write tests that deal
3
3
  # with other versions of bundler and we are unsure how to
4
4
  # handle this better.
5
- VERSION = "1.0.21" unless defined?(::Bundler::VERSION)
5
+ VERSION = "1.0.21.1" unless defined?(::Bundler::VERSION)
6
6
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mpapis-bundler
3
3
  version: !ruby/object:Gem::Version
4
- hash: 61
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 21
10
- version: 1.0.21
10
+ - 1
11
+ version: 1.0.21.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - "Andr\xC3\xA9 Arko"
@@ -18,8 +19,7 @@ autorequire:
18
19
  bindir: bin
19
20
  cert_chain: []
20
21
 
21
- date: 2011-10-24 00:00:00 +02:00
22
- default_executable:
22
+ date: 2011-11-19 00:00:00 Z
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: rubygems-bundler
@@ -218,7 +218,6 @@ files:
218
218
  - spec/update/gems_spec.rb
219
219
  - spec/update/git_spec.rb
220
220
  - spec/update/source_spec.rb
221
- has_rdoc: true
222
221
  homepage: http://gembundler.com
223
222
  licenses: []
224
223
 
@@ -250,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
250
249
  requirements: []
251
250
 
252
251
  rubyforge_project: bundler
253
- rubygems_version: 1.4.2
252
+ rubygems_version: 1.8.10
254
253
  signing_key:
255
254
  specification_version: 3
256
255
  summary: rubygems-plugin fork! The best way to manage your application's dependencies