bundler08 0.8.4 → 0.8.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/bundler08.rb +1 -1
- data/lib/bundler08/commands/bundle_command.rb +1 -0
- metadata +14 -5
data/lib/bundler08.rb
CHANGED
@@ -37,6 +37,7 @@ class Gem::Commands::BundleCommand < Gem::Command
|
|
37
37
|
|
38
38
|
add_option('-b', '--build-options OPTION_FILE', "Specify a path to a yml file with build options for binary gems") do |option_file, options|
|
39
39
|
if File.exist?(option_file)
|
40
|
+
require 'yaml'
|
40
41
|
options[:build_options] = YAML.load_file(option_file)
|
41
42
|
end
|
42
43
|
end
|
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler08
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 8
|
8
|
+
- 5
|
9
|
+
version: 0.8.5
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Yehuda Katz
|
@@ -10,7 +15,7 @@ autorequire:
|
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
17
|
|
13
|
-
date: 2010-
|
18
|
+
date: 2010-03-05 00:00:00 -08:00
|
14
19
|
default_executable:
|
15
20
|
dependencies: []
|
16
21
|
|
@@ -62,18 +67,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
67
|
requirements:
|
63
68
|
- - ">="
|
64
69
|
- !ruby/object:Gem::Version
|
70
|
+
segments:
|
71
|
+
- 0
|
65
72
|
version: "0"
|
66
|
-
version:
|
67
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
74
|
requirements:
|
69
75
|
- - ">="
|
70
76
|
- !ruby/object:Gem::Version
|
77
|
+
segments:
|
78
|
+
- 1
|
79
|
+
- 3
|
80
|
+
- 5
|
71
81
|
version: 1.3.5
|
72
|
-
version:
|
73
82
|
requirements: []
|
74
83
|
|
75
84
|
rubyforge_project:
|
76
|
-
rubygems_version: 1.3.
|
85
|
+
rubygems_version: 1.3.6
|
77
86
|
signing_key:
|
78
87
|
specification_version: 3
|
79
88
|
summary: An easy way to vendor gem dependencies
|