RubyPackager 1.2.0.20120302 → 1.2.1.20131211

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,3 @@
1
- #--
2
- # Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
3
- # Licensed under the terms specified in LICENSE file. No warranty is provided.
4
- #++
5
-
6
1
  module RubyPackager
7
2
 
8
3
  module Installers
@@ -33,9 +28,10 @@ module RubyPackager
33
28
  # * *iInstallerDir* (_String_): The directory where the installer has to be put
34
29
  # * *iVersion* (_String_): Release version
35
30
  # * *iReleaseInfo* (_ReleaseInfo_): Release info
31
+ # * *iIncludeTest* (_Boolean_): Are test files part of the release ?
36
32
  # Return::
37
33
  # * _String_: File name to distribute, or nil in case of failure
38
- def create_installer(iRootDir, iReleaseDir, iInstallerDir, iVersion, iReleaseInfo)
34
+ def create_installer(iRootDir, iReleaseDir, iInstallerDir, iVersion, iReleaseInfo, iIncludeTest)
39
35
  rFileName = nil
40
36
 
41
37
  if (iReleaseInfo.install_info[:nsis_file_name] == nil)
@@ -56,4 +52,4 @@ module RubyPackager
56
52
 
57
53
  end
58
54
 
59
- end
55
+ end
@@ -1,171 +1,166 @@
1
- #--
2
- # Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
3
- # Licensed under the terms specified in LICENSE file. No warranty is provided.
4
- #++
5
-
6
- # This file prepares a win32 distribution
7
-
8
- # Require needed to generate the temporary ruby file that produces the executable
9
- require 'tmpdir'
10
-
11
- module RubyPackager
12
-
13
- class PlatformReleaser
14
-
15
- PLATFORM_DIR = File.dirname(__FILE__)
16
-
17
- # Check if the tools we will use to generate an executable are present
18
- #
19
- # Parameters::
20
- # * *iRootDir* (_String_): Root directory
21
- # * *iIncludeRuby* (_Boolean_): Do we include Ruby in the release ?
22
- # * *iNeedBinaryCompilation* (_Boolean_): Do we need to compile RB files into a binary executable ?
23
- # Return::
24
- # * _Boolean_: Are tools correctly useable ?
25
- def check_exe_tools(iRootDir, iIncludeRuby, iNeedBinaryCompilation)
26
- rSuccess = true
27
-
28
- if (iIncludeRuby)
29
- # We need allinoneruby
30
- if (Gem.find_files('allinoneruby').empty?)
31
- log_err "Need to have allinoneruby gem to release including Ruby.\nPlease install allinoneruby gem (gem install allinoneruby)."
32
- rSuccess = false
33
- end
34
- end
35
- if (iNeedBinaryCompilation)
36
- # Check that edicon is present
37
- if (!File.exists?("#{PLATFORM_DIR}/edicon/edicon.exe"))
38
- log_err "Need to have edicon.exe installed in #{PLATFORM_DIR}/edicon to set a Windows executable's icon.\nPlease install edicon, part of Ocra Gem (gem install ocra), and copy from the Gem directory (ocra-1.1.1/share/ocra/edicon.exe) to #{PLATFORM_DIR}/edicon/edicon.exe."
39
- rSuccess = false
40
- end
41
- # Check that exerb is present
42
- if (!system('exerb.bat --version'))
43
- log_err "Need to have exerb installed in the system PATH to create a Windows executable.\nPlease download and install exerb from http://exerb.sourceforge.jp/index.en.html"
44
- rSuccess = false
45
- end
46
- end
47
-
48
- return rSuccess
49
- end
50
-
51
- # Create the binary.
52
- # This is called when the core library has been copied in the release directory.
53
- #
54
- # Parameters::
55
- # * *iRootDir* (_String_): Root directory
56
- # * *iReleaseDir* (_String_): Release directory
57
- # * *iIncludeRuby* (_Boolean_): Do we include Ruby in the release ?
58
- # * *iExecutableInfo* (<em>map<Symbol,Object></em>): The executable information
59
- # Return::
60
- # * _Boolean_: Success ?
61
- def create_binary(iRootDir, iReleaseDir, iIncludeRuby, iExecutableInfo)
62
- rSuccess = true
63
-
64
- lBinSubDir = "Launch/#{RUBY_PLATFORM}/bin"
65
- lRubyBaseBinName = nil
66
- lRubyLaunchCmd = nil
67
- if (iExecutableInfo[:terminal_application])
68
- lRubyBaseBinName = 'ruby'
69
- lRubyLaunchCmd = 'ruby'
70
- else
71
- lRubyBaseBinName = 'rubyw'
72
- lRubyLaunchCmd = 'start rubyw'
73
- end
74
- lBinName = "#{lRubyBaseBinName}-#{RUBY_VERSION}.exe"
75
- if (iIncludeRuby)
76
- # First create the binary containing all ruby
77
- lBinDir = "#{iReleaseDir}/#{lBinSubDir}"
78
- FileUtils::mkdir_p(lBinDir)
79
- change_dir(lBinDir) do
80
- lCmd = nil
81
- if (iExecutableInfo[:terminal_application])
82
- lCmd = "allinoneruby.bat #{lBinName}"
83
- else
84
- lCmd = "allinoneruby.bat --rubyw #{lBinName}"
85
- end
86
- rSuccess = system(lCmd)
87
- if (!rSuccess)
88
- log_err "Error while executing \"#{lCmd}\""
89
- end
90
- end
91
- end
92
- if (rSuccess)
93
- # Then create the real executable
94
- # Generate the Ruby file that launches everything for Windows
95
- lTempFileName = "#{Dir.tmpdir}/EXE_#{RUBY_PLATFORM}_Gen.rb"
96
- File.open(lTempFileName, 'w') do |oFile|
97
- oFile << "
98
- \#--
99
- \# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
100
- \# Licensed under the terms specified in LICENSE file. No warranty is provided.
101
- \#++
102
-
103
- \# This file is generated by RubyPackager for Windows.
104
- \# This is a temporary file that should not exist anymore once the release has been done.
105
-
106
- \# This file has to launch the correct binary. There can be several binaries dependending on the configuration.
107
- \# This is the file that will be created as the executable to launch.
108
-
109
- module RubyPackager
110
-
111
- \# Execute a shell command
112
- \#
113
- \# Parameters::
114
- \# * *iCmd* (_String_): The shell command to execute
115
- \# Return::
116
- \# * _Boolean_: Success ?
117
- def self.shellExecute(iCmd)
118
- puts \"> \#{iCmd}\"
119
- rSuccess = system(iCmd)
120
-
121
- if (!rSuccess)
122
- puts \"Error while executing '\#{iCmd}'\"
123
- end
124
-
125
- return rSuccess
126
- end
127
-
128
- end
129
-
130
- \# Test if Ruby is installed
131
- lSuccess = false
132
- lCurrentDir = Dir.getwd
133
- if (system('#{lRubyBaseBinName} --version'))
134
- \# Launch directly
135
- puts \"Ruby found in environment. Using it directly.\"
136
- lSuccess = RubyPackager::shellExecute(\"#{lRubyLaunchCmd} -w \\\"\#{lCurrentDir}/#{iExecutableInfo[:startup_rb_file]}\\\" \#{ARGV.join(' ')}\")
137
- end
138
- if (!lSuccess)
139
- \# Use allinoneruby
140
- puts \"Ruby not found in environment. Using shipped Ruby.\"
141
- lSuccess = RubyPackager::shellExecute(\"start \\\"Title\\\" \\\"\#{lCurrentDir}/#{lBinSubDir}/#{lBinName}\\\" \\\"\#{lCurrentDir}/#{iExecutableInfo[:startup_rb_file]}\\\" \#{ARGV.join(' ')}\")
142
- if (!lSuccess)
143
- puts 'Unable to execute the application. Please reinstall it.'
144
- puts 'Hit enter to quit.'
145
- $stdin.gets
146
- end
147
- end
148
- "
149
- end
150
- change_dir(iReleaseDir) do
151
- rSuccess = system("exerb.bat -o #{iExecutableInfo[:exe_name]}.exe #{lTempFileName}")
152
- end
153
- if (rSuccess)
154
- File.unlink(lTempFileName)
155
- # And set its icon
156
- lEdiconCmd = "#{PLATFORM_DIR}/edicon/edicon.exe #{iReleaseDir}/#{iExecutableInfo[:exe_name]}.exe #{iRootDir}/#{iExecutableInfo[:icon_name]}"
157
- rSuccess = system(lEdiconCmd)
158
- if (!rSuccess)
159
- log_err "Error while executing \"#{lEdiconCmd}\""
160
- end
161
- else
162
- log_err "Error while executing \"exerb.bat -o #{iExecutableInfo[:exe_name]}.exe #{lTempFileName}\""
163
- end
164
- end
165
-
166
- return rSuccess
167
- end
168
-
169
- end
170
-
171
- end
1
+ # This file prepares a win32 distribution
2
+
3
+ # Require needed to generate the temporary ruby file that produces the executable
4
+ require 'tmpdir'
5
+
6
+ module RubyPackager
7
+
8
+ class PlatformReleaser
9
+
10
+ PLATFORM_DIR = File.dirname(__FILE__)
11
+
12
+ # Check if the tools we will use to generate an executable are present
13
+ #
14
+ # Parameters::
15
+ # * *iRootDir* (_String_): Root directory
16
+ # * *iIncludeRuby* (_Boolean_): Do we include Ruby in the release ?
17
+ # * *iNeedBinaryCompilation* (_Boolean_): Do we need to compile RB files into a binary executable ?
18
+ # Return::
19
+ # * _Boolean_: Are tools correctly useable ?
20
+ def check_exe_tools(iRootDir, iIncludeRuby, iNeedBinaryCompilation)
21
+ rSuccess = true
22
+
23
+ if (iIncludeRuby)
24
+ # We need allinoneruby
25
+ if (Gem.find_files('allinoneruby').empty?)
26
+ log_err "Need to have allinoneruby gem to release including Ruby.\nPlease install allinoneruby gem (gem install allinoneruby)."
27
+ rSuccess = false
28
+ end
29
+ end
30
+ if (iNeedBinaryCompilation)
31
+ # Check that edicon is present
32
+ if (!File.exists?("#{PLATFORM_DIR}/edicon/edicon.exe"))
33
+ log_err "Need to have edicon.exe installed in #{PLATFORM_DIR}/edicon to set a Windows executable's icon.\nPlease install edicon, part of Ocra Gem (gem install ocra), and copy from the Gem directory (ocra-1.1.1/share/ocra/edicon.exe) to #{PLATFORM_DIR}/edicon/edicon.exe."
34
+ rSuccess = false
35
+ end
36
+ # Check that exerb is present
37
+ if (system('exerb.bat --version') == nil)
38
+ log_err "Need to have exerb installed in the system PATH to create a Windows executable.\nPlease download and install exerb from http://exerb.sourceforge.jp/index.en.html"
39
+ rSuccess = false
40
+ end
41
+ end
42
+
43
+ return rSuccess
44
+ end
45
+
46
+ # Create the binary.
47
+ # This is called when the core library has been copied in the release directory.
48
+ #
49
+ # Parameters::
50
+ # * *iRootDir* (_String_): Root directory
51
+ # * *iReleaseDir* (_String_): Release directory
52
+ # * *iIncludeRuby* (_Boolean_): Do we include Ruby in the release ?
53
+ # * *iExecutableInfo* (<em>map<Symbol,Object></em>): The executable information
54
+ # Return::
55
+ # * _Boolean_: Success ?
56
+ def create_binary(iRootDir, iReleaseDir, iIncludeRuby, iExecutableInfo)
57
+ rSuccess = true
58
+
59
+ lBinSubDir = "Launch/#{PLATFORM_ID}/bin"
60
+ lRubyBaseBinName = nil
61
+ lRubyLaunchCmd = nil
62
+ if (iExecutableInfo[:terminal_application])
63
+ lRubyBaseBinName = 'ruby'
64
+ lRubyLaunchCmd = 'ruby'
65
+ else
66
+ lRubyBaseBinName = 'rubyw'
67
+ lRubyLaunchCmd = 'start rubyw'
68
+ end
69
+ lBinName = "#{lRubyBaseBinName}-#{RUBY_VERSION}.exe"
70
+ if (iIncludeRuby)
71
+ # First create the binary containing all ruby
72
+ lBinDir = "#{iReleaseDir}/#{lBinSubDir}"
73
+ FileUtils::mkdir_p(lBinDir)
74
+ change_dir(lBinDir) do
75
+ lCmd = nil
76
+ if (iExecutableInfo[:terminal_application])
77
+ lCmd = "allinoneruby.bat #{lBinName}"
78
+ else
79
+ lCmd = "allinoneruby.bat --rubyw #{lBinName}"
80
+ end
81
+ rSuccess = system(lCmd)
82
+ if (!rSuccess)
83
+ log_err "Error while executing \"#{lCmd}\""
84
+ end
85
+ end
86
+ end
87
+ if (rSuccess)
88
+ # Then create the real executable
89
+ # Generate the Ruby file that launches everything for Windows
90
+ lTempFileName = "#{Dir.tmpdir}/EXE_#{PLATFORM_ID}_Gen.rb"
91
+ File.open(lTempFileName, 'w') do |oFile|
92
+ oFile << "
93
+ \#--
94
+ \# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
95
+ \# Licensed under the terms specified in LICENSE file. No warranty is provided.
96
+ \#++
97
+
98
+ \# This file is generated by RubyPackager for Windows.
99
+ \# This is a temporary file that should not exist anymore once the release has been done.
100
+
101
+ \# This file has to launch the correct binary. There can be several binaries dependending on the configuration.
102
+ \# This is the file that will be created as the executable to launch.
103
+
104
+ module RubyPackager
105
+
106
+ \# Execute a shell command
107
+ \#
108
+ \# Parameters::
109
+ \# * *iCmd* (_String_): The shell command to execute
110
+ \# Return::
111
+ \# * _Boolean_: Success ?
112
+ def self.shellExecute(iCmd)
113
+ puts \"> \#{iCmd}\"
114
+ rSuccess = system(iCmd)
115
+
116
+ if (!rSuccess)
117
+ puts \"Error while executing '\#{iCmd}'\"
118
+ end
119
+
120
+ return rSuccess
121
+ end
122
+
123
+ end
124
+
125
+ \# Test if Ruby is installed
126
+ lSuccess = false
127
+ lCurrentDir = Dir.getwd
128
+ if (system('#{lRubyBaseBinName} --version'))
129
+ \# Launch directly
130
+ puts \"Ruby found in environment. Using it directly.\"
131
+ lSuccess = RubyPackager::shellExecute(\"#{lRubyLaunchCmd} -w \\\"\#{lCurrentDir}/#{iExecutableInfo[:startup_rb_file]}\\\" \#{ARGV.join(' ')}\")
132
+ end
133
+ if (!lSuccess)
134
+ \# Use allinoneruby
135
+ puts \"Ruby not found in environment. Using shipped Ruby.\"
136
+ lSuccess = RubyPackager::shellExecute(\"start \\\"Title\\\" \\\"\#{lCurrentDir}/#{lBinSubDir}/#{lBinName}\\\" \\\"\#{lCurrentDir}/#{iExecutableInfo[:startup_rb_file]}\\\" \#{ARGV.join(' ')}\")
137
+ if (!lSuccess)
138
+ puts 'Unable to execute the application. Please reinstall it.'
139
+ puts 'Hit enter to quit.'
140
+ $stdin.gets
141
+ end
142
+ end
143
+ "
144
+ end
145
+ change_dir(iReleaseDir) do
146
+ rSuccess = system("exerb.bat -o #{iExecutableInfo[:exe_name]}.exe #{lTempFileName}")
147
+ end
148
+ if (rSuccess)
149
+ File.unlink(lTempFileName)
150
+ # And set its icon
151
+ lEdiconCmd = "#{PLATFORM_DIR}/edicon/edicon.exe #{iReleaseDir}/#{iExecutableInfo[:exe_name]}.exe #{iRootDir}/#{iExecutableInfo[:icon_name]}"
152
+ rSuccess = system(lEdiconCmd)
153
+ if (!rSuccess)
154
+ log_err "Error while executing \"#{lEdiconCmd}\""
155
+ end
156
+ else
157
+ log_err "Error while executing \"exerb.bat -o #{iExecutableInfo[:exe_name]}.exe #{lTempFileName}\""
158
+ end
159
+ end
160
+
161
+ return rSuccess
162
+ end
163
+
164
+ end
165
+
166
+ end
metadata CHANGED
@@ -1,124 +1,161 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: RubyPackager
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 2
8
- - 0
9
- - 20120302
10
- version: 1.2.0.20120302
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.1.20131211
5
+ prerelease:
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Muriel Salvan
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2012-03-02 00:00:00 +01:00
19
- default_executable:
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
12
+ date: 2013-12-11 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
22
15
  name: rUtilAnts
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
25
17
  none: false
26
- requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- segments:
30
- - 1
31
- - 0
32
- version: "1.0"
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '1.0'
33
22
  type: :runtime
34
- version_requirements: *id001
35
- - !ruby/object:Gem::Dependency
36
- name: allinoneruby
37
23
  prerelease: false
38
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: allinoneruby
32
+ requirement: !ruby/object:Gem::Requirement
39
33
  none: false
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- segments:
44
- - 0
45
- version: "0"
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
46
38
  type: :runtime
47
- version_requirements: *id002
48
- - !ruby/object:Gem::Dependency
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
49
47
  name: highline
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: net-ssh
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: net-scp
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
50
87
  prerelease: false
51
- requirement: &id003 !ruby/object:Gem::Requirement
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: rdoc
96
+ requirement: !ruby/object:Gem::Requirement
52
97
  none: false
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- segments:
57
- - 0
58
- version: "0"
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
59
102
  type: :runtime
60
- version_requirements: *id003
61
- description: Generate installable binary distributions of Ruby programs for many platforms (many OS, with or without Ruby installed on clients...). Fit to distribute extensible (plugins) Ruby programs also. Handles also libraries and uploads on websites (SF.net...).
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ description: Generate installable binary distributions of Ruby programs for many platforms
111
+ (many OS, with or without Ruby installed on clients...). Fit to distribute extensible
112
+ (plugins) Ruby programs also. Handles also libraries and uploads on websites (SF.net...).
62
113
  email: muriel@x-aeon.com
63
- executables:
114
+ executables:
64
115
  - Release.rb
65
116
  extensions: []
66
-
67
117
  extra_rdoc_files: []
68
-
69
- files:
118
+ files:
70
119
  - AUTHORS
71
120
  - bin/Release.rb
72
121
  - ChangeLog
73
122
  - Credits
123
+ - lib/RubyPackager/cygwin/PlatformReleaser.rb
74
124
  - lib/RubyPackager/Distributors/RubyGems.rb
75
125
  - lib/RubyPackager/Distributors/SourceForge.rb
76
- - lib/RubyPackager/i386-cygwin/PlatformReleaser.rb
77
- - lib/RubyPackager/i386-linux/PlatformReleaser.rb
78
- - lib/RubyPackager/i386-mingw32/edicon/edicon.exe
79
- - lib/RubyPackager/i386-mingw32/Installers/NSIS.rb
80
- - lib/RubyPackager/i386-mingw32/PlatformReleaser.rb
81
- - lib/RubyPackager/i386-mswin32/edicon/edicon.exe
82
- - lib/RubyPackager/i386-mswin32/Installers/NSIS.rb
83
- - lib/RubyPackager/i386-mswin32/PlatformReleaser.rb
84
126
  - lib/RubyPackager/Installers/Gem.rb
127
+ - lib/RubyPackager/linux/PlatformReleaser.rb
85
128
  - lib/RubyPackager/ReleaseInfo.rb
86
129
  - lib/RubyPackager/Releaser.rb
87
130
  - lib/RubyPackager/Tools.rb
131
+ - lib/RubyPackager/windows/edicon/edicon.exe
132
+ - lib/RubyPackager/windows/Installers/NSIS.rb
133
+ - lib/RubyPackager/windows/PlatformReleaser.rb
88
134
  - LICENSE
89
135
  - README
90
136
  - ReleaseInfo
91
- has_rdoc: true
92
137
  homepage: http://rubypackager.sourceforge.net/
93
138
  licenses: []
94
-
95
139
  post_install_message:
96
140
  rdoc_options: []
97
-
98
- require_paths:
141
+ require_paths:
99
142
  - lib
100
- required_ruby_version: !ruby/object:Gem::Requirement
143
+ required_ruby_version: !ruby/object:Gem::Requirement
101
144
  none: false
102
- requirements:
103
- - - ">="
104
- - !ruby/object:Gem::Version
105
- segments:
106
- - 0
107
- version: "0"
108
- required_rubygems_version: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - ! '>='
147
+ - !ruby/object:Gem::Version
148
+ version: '0'
149
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
150
  none: false
110
- requirements:
111
- - - ">="
112
- - !ruby/object:Gem::Version
113
- segments:
114
- - 0
115
- version: "0"
151
+ requirements:
152
+ - - ! '>='
153
+ - !ruby/object:Gem::Version
154
+ version: '0'
116
155
  requirements: []
117
-
118
156
  rubyforge_project: rubypackager
119
- rubygems_version: 1.3.7
157
+ rubygems_version: 1.8.24
120
158
  signing_key:
121
159
  specification_version: 3
122
160
  summary: Solution to release Ruby programs on any platform.
123
161
  test_files: []
124
-