RubyPackager 1.2.0.20120302 → 1.2.1.20131211
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +1 -0
- data/ChangeLog +12 -0
- data/ReleaseInfo +1 -1
- data/bin/Release.rb +19 -8
- data/lib/RubyPackager/Distributors/RubyGems.rb +2 -7
- data/lib/RubyPackager/Distributors/SourceForge.rb +2 -7
- data/lib/RubyPackager/Installers/Gem.rb +2 -7
- data/lib/RubyPackager/ReleaseInfo.rb +1 -5
- data/lib/RubyPackager/Releaser.rb +0 -4
- data/lib/RubyPackager/Tools.rb +1 -6
- data/lib/RubyPackager/{i386-cygwin → cygwin}/PlatformReleaser.rb +109 -113
- data/lib/RubyPackager/{i386-linux → linux}/PlatformReleaser.rb +110 -113
- data/lib/RubyPackager/{i386-mingw32 → windows}/Installers/NSIS.rb +3 -7
- data/lib/RubyPackager/{i386-mswin32 → windows}/PlatformReleaser.rb +166 -171
- data/lib/RubyPackager/{i386-mingw32 → windows}/edicon/edicon.exe +0 -0
- metadata +115 -78
- data/lib/RubyPackager/i386-mingw32/PlatformReleaser.rb +0 -171
- data/lib/RubyPackager/i386-mswin32/Installers/NSIS.rb +0 -59
- data/lib/RubyPackager/i386-mswin32/edicon/edicon.exe +0 -0
@@ -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
|
-
|
3
|
-
#
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
#
|
18
|
-
#
|
19
|
-
#
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
# Check that
|
37
|
-
if (
|
38
|
-
log_err "Need to have
|
39
|
-
rSuccess = false
|
40
|
-
end
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
#
|
52
|
-
#
|
53
|
-
#
|
54
|
-
#
|
55
|
-
# *
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
\#
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
\#
|
107
|
-
\#
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
\#
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
lSuccess =
|
132
|
-
|
133
|
-
if (
|
134
|
-
\#
|
135
|
-
puts \"Ruby found in environment. Using
|
136
|
-
lSuccess = RubyPackager::shellExecute(\"
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
end
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
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
|
File without changes
|
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
|
-
|
5
|
-
|
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
|
-
|
19
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
44
|
-
- 0
|
45
|
-
version: "0"
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
46
38
|
type: :runtime
|
47
|
-
|
48
|
-
|
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
|
-
|
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
|
-
|
57
|
-
- 0
|
58
|
-
version: "0"
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
59
102
|
type: :runtime
|
60
|
-
|
61
|
-
|
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
|
-
|
106
|
-
|
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
|
-
|
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.
|
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
|
-
|