rubygems-bundler 1.2.0.rc1 → 1.2.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3727a154325115e7bef8f14ddc818bda4aee2761
4
+ data.tar.gz: 249607215168e11a035a29932ed15ad48d536a22
5
+ SHA512:
6
+ metadata.gz: 37021853be918f9fc20767518eb2088563a7dd8ed271ad8da55856df4bd88126b354da4b1690591d426e630334e775fabe2f0cd0cb383decec6cfb02803cea24
7
+ data.tar.gz: 1886eca2a4108371110a871aacf16006c97e373cbcae63c6ef234eeab684583da45b587e82d5701860f00d652c50661b8c7a877242a6b6955d31bb562d32ba8c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.2.0.rc2
4
+ date: 2013-05-30
5
+
6
+ - add a global variable to ignore executables, fix #47
7
+ - fix loading specs to restore in older rubygems, update #41
8
+
3
9
  ## 1.2.0.rc1
4
10
  date: 2013-04-15
5
11
 
@@ -7,6 +7,9 @@ RubygemsBundler::DEBUG = ENV.key?('NOEXEC_DEBUG')
7
7
  if %w(bundle rubygems-bundler-uninstaller).include?(File.basename($0))
8
8
  puts "Noexec - skipped binary: #{File.basename($0)}" if RubygemsBundler::DEBUG
9
9
 
10
+ elsif ENV['NOEXEC_EXCLUDE'] && ENV['NOEXEC_EXCLUDE'].split(/ /).include?(File.basename($0))
11
+ puts "Noexec - ENV skipped binary: #{File.basename($0)}" if RubygemsBundler::DEBUG
12
+
10
13
  elsif ENV['BUNDLE_GEMFILE'] && ENV['BUNDLE_BIN_PATH'] && ENV['RUBYOPT']
11
14
  puts "Noexec - already in 'bundle exec'" if RubygemsBundler::DEBUG
12
15
 
@@ -41,7 +44,7 @@ else
41
44
  end
42
45
 
43
46
  def candidate?(gemfile, bin)
44
- rubygems_specs = Gem::Specification._all
47
+ rubygems_specs = Bundler.rubygems.all_specs
45
48
  config_file = File.expand_path('../.noexec.yaml', gemfile)
46
49
  log "Considering #{config_file.inspect}"
47
50
  if File.exist?(config_file)
@@ -1,3 +1,3 @@
1
1
  module RubygemsBundler
2
- VERSION = "1.2.0.rc1"
2
+ VERSION = "1.2.0.rc2"
3
3
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubygems-bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0.rc1
5
- prerelease: 6
4
+ version: 1.2.0.rc2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Josh Hull
@@ -10,22 +9,20 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2013-04-24 00:00:00.000000000 Z
12
+ date: 2013-05-30 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: tf
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ! '>='
18
+ - - '>='
21
19
  - !ruby/object:Gem::Version
22
20
  version: '0'
23
21
  type: :development
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
- - - ! '>='
25
+ - - '>='
29
26
  - !ruby/object:Gem::Version
30
27
  version: '0'
31
28
  description: Stop using bundle exec. Integrate Rubygems and Bundler. Make rubygems
@@ -62,27 +59,26 @@ files:
62
59
  - test/dtf/rubygems_comment_test.sh
63
60
  homepage: http://mpapis.github.com/rubygems-bundler
64
61
  licenses: []
62
+ metadata: {}
65
63
  post_install_message:
66
64
  rdoc_options: []
67
65
  require_paths:
68
66
  - lib
69
67
  required_ruby_version: !ruby/object:Gem::Requirement
70
- none: false
71
68
  requirements:
72
- - - ! '>='
69
+ - - '>='
73
70
  - !ruby/object:Gem::Version
74
71
  version: '0'
75
72
  required_rubygems_version: !ruby/object:Gem::Requirement
76
- none: false
77
73
  requirements:
78
- - - ! '>'
74
+ - - '>'
79
75
  - !ruby/object:Gem::Version
80
76
  version: 1.3.1
81
77
  requirements: []
82
78
  rubyforge_project:
83
- rubygems_version: 1.8.25
79
+ rubygems_version: 2.0.3
84
80
  signing_key:
85
- specification_version: 3
81
+ specification_version: 4
86
82
  summary: Stop using bundle exec
87
83
  test_files:
88
84
  - test/dtf/bundler_comment_test.sh