buildrizpack 0.2-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,154 @@
1
+ #encoding: utf-8
2
+ # Licensed to the Apache Software Foundation (ASF) under one or more
3
+ # contributor license agreements. See the NOTICE file distributed with this
4
+ # work for additional information regarding copyright ownership. The ASF
5
+ # licenses this file to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ # License for the specific language governing permissions and limitations under
15
+ # the License.
16
+
17
+ require File.join(File.dirname(__FILE__), '../spec_helpers')
18
+
19
+ describe BuildrIzPack::IzPackTask do
20
+
21
+ def writeJavaMain(filename)
22
+ Buildr::write(filename, "public class Main { public static void main(String[] args) {}}")
23
+ end
24
+
25
+ def define_project(project_name='foo')
26
+ myPath = "src/main/java/Main.java"
27
+ writeJavaMain(myPath)
28
+ @project = define(project_name, :version => "1.0.0.001") do
29
+ x = path_to(:sources, :main, :java)+'/**/*.java'
30
+ package(:jar)
31
+ package(:izpack).include(package(:jar))
32
+ end
33
+ end
34
+
35
+ def writeSimpleInstaller(filename)
36
+ content = %(<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
37
+ <installation version="1.0">
38
+ <info>
39
+ <appname>demo app</appname>
40
+ <appversion>7.6.5</appversion>
41
+ </info>
42
+ <guiprefs width="700" height="520" resizable="yes" />
43
+ <locale>
44
+ <langpack iso3="eng" />
45
+ </locale>
46
+ <panels>
47
+ <panel classname="InstallPanel" />
48
+ </panels>
49
+ <packs>
50
+ <pack name="Demo-App" required="yes">
51
+ <description>Our demo app.</description>
52
+ <file src="withXml-1.0.0.001.jar" targetdir="$SYSTEM_user_home/demo" />
53
+ </pack>
54
+ </packs>
55
+ </installation>)
56
+ puts "writeSimpleInstaller wrote #{File.expand_path(filename)}"
57
+ Buildr::write(filename, content)
58
+ end
59
+
60
+ it "must add correctly a single file" do
61
+ @project = define('nofile', :version => "1.0.2") do
62
+ pack = BuildrIzPack::Pack.new('myPackName', 'myPack description')
63
+ myInstXml = File.join(Dir.pwd, 'singleFileInstaller.xml')
64
+ pack.addFile(myInstXml)
65
+ xm = Builder::XmlMarkup.new(:target=>File.open(myInstXml, 'w+'), :indent => 2)
66
+ xm.instruct!
67
+ xm.installation('version'=>'1.0') {
68
+ xm.tag!('info') { xm.appversion(project.version); xm.appname(project.name) }
69
+ xm.guiprefs('width' => '400', 'height' => '400', 'resizable' => 'no')
70
+ xm.panels { |x| xm.panel('classname' => 'InstallPanel') }
71
+ xm.locale { |x| xm.langpack('iso3'=>'eng') }
72
+ xm.packs {
73
+ pack.emitIzPackXML(xm)
74
+ }
75
+ }
76
+ xm.target!().close
77
+ package(:izpack).input = myInstXml
78
+ package(:izpack)
79
+ end
80
+ @project.package(:izpack).invoke
81
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
82
+ inhalt = IO.readlines(File.join(Dir.pwd, 'singleFileInstaller.xml')).join('')
83
+ File.exists?(@instPath).should be_true
84
+ (inhalt.index('<pack name="myPackName" required="no">') > 0).should be_true
85
+ (inhalt.index('<description>myPack description</description>') > 0).should be_true
86
+ (inhalt.index('singleFileInstaller.xml" target="$INSTALL_PATH/plugins/singleFileInstaller.xml"/>') > 0).should be_true
87
+ end
88
+
89
+
90
+ it "should generate an installer jar" do
91
+ define_project
92
+ @project.package(:izpack).invoke
93
+ @path = @project.package(:jar).to_s
94
+ File.exists?(@path).should be_true
95
+ @path.to_s.should include(".jar")
96
+ Zip::ZipFile.open(@path) do |zip|
97
+ zip.find_entry("Main.class").should_not be_nil
98
+ zip.find_entry("META-INF/MANIFEST.MF").should_not be_nil
99
+ end
100
+ File.exists?(@path).should be_true
101
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
102
+ File.exists?(@instPath).should be_true
103
+ end
104
+
105
+ it "should use the provided install.xml" do
106
+ define_project('withXml')
107
+ xmlPath = File.join(@project.path_to(:target), "install.xml")
108
+ writeSimpleInstaller(xmlPath)
109
+ @project.package(:izpack).input = xmlPath
110
+ @project.package(:izpack).invoke
111
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
112
+ File.exists?(@instPath).should be_true
113
+ end
114
+
115
+ it "must include at least one file" do
116
+ @project = define('nofile', :version => "1.0.2") do
117
+ package(:izpack)
118
+ end
119
+ lambda { project("nofile").package(:izpack).invoke }.should raise_error(/You must include at least one file to create an izPack installer/)
120
+ end
121
+
122
+ it "should be possible to add several files to several packs" do
123
+ define_project('severalPacks')
124
+ @project.package(:izpack).locales = ['eng', 'fra', 'deu']
125
+ Buildr.write(@project.path_to(:target)+"/1_5.txt", "This is file 1_5.txt")
126
+ Buildr.write(@project.path_to(:target)+"/3_7.txt", "This is file 3_7.txt")
127
+ s = ''
128
+ xm = Builder::XmlMarkup.new(:target=>s)
129
+ xm.packs {
130
+ xm.pack('name' => 'pack_3', 'required' => 'yes') {
131
+ xm.description("Niklaus ist am Testen")
132
+ xm.file('src'=> @project.path_to(:target)+"/1_5.txt", 'targetdir' =>'1/5')
133
+ xm.file('src'=> @project.path_to(:target)+"/3_7.txt", 'targetdir' =>'3/7')
134
+ }
135
+ }
136
+
137
+ @project.package(:izpack).packs = s
138
+ s = ''
139
+ xm = Builder::XmlMarkup.new(:target=>s)
140
+ xm.native('type'=>'izpack', 'name'=>'ShellLink.dll')
141
+ @project.package(:izpack).native = s
142
+ @project.package(:izpack).invoke
143
+ File.exists?(@project.package(:izpack).input).should be_true
144
+ content = IO.readlines(@project.package(:izpack).input)
145
+ content.join.should match('pack_3')
146
+ content.join.should match('1_5.txt')
147
+ content.join.should match('3/7')
148
+ content.join.should match('<native ')
149
+
150
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
151
+ File.exists?(@instPath).should be_true
152
+ end
153
+
154
+ end
@@ -0,0 +1,155 @@
1
+ #encoding: utf-8
2
+ # Licensed to the Apache Software Foundation (ASF) under one or more
3
+ # contributor license agreements. See the NOTICE file distributed with this
4
+ # work for additional information regarding copyright ownership. The ASF
5
+ # licenses this file to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ # License for the specific language governing permissions and limitations under
15
+ # the License.
16
+
17
+ require File.join(File.dirname(__FILE__), '../spec_helpers')
18
+
19
+ describe BuildrIzPack::IzPackTask do
20
+
21
+ def writeJavaMain(filename)
22
+ Buildr::write(filename, "public class Main { public static void main(String[] args) {}}")
23
+ end
24
+
25
+ def define_project(project_name='foo')
26
+ myPath = "src/main/java/Main.java"
27
+ writeJavaMain(myPath)
28
+ @project = define(project_name, :version => "1.0.0.001") do
29
+ x = path_to(:sources, :main, :java)+'/**/*.java'
30
+ package(:jar)
31
+ package(:izpack).include(package(:jar))
32
+ end
33
+ end
34
+
35
+ def writeSimpleInstaller(filename)
36
+ content = %(<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
37
+ <installation version="1.0">
38
+ <info>
39
+ <appname>demo app</appname>
40
+ <appversion>7.6.5</appversion>
41
+ </info>
42
+ <guiprefs width="700" height="520" resizable="yes" />
43
+ <locale>
44
+ <langpack iso3="eng" />
45
+ </locale>
46
+ <panels>
47
+ <panel classname="InstallPanel" />
48
+ </panels>
49
+ <packs>
50
+ <pack name="Demo-App" required="yes">
51
+ <description>Our demo app.</description>
52
+ <file src="withXml-1.0.0.001.jar" targetdir="$SYSTEM_user_home/demo" />
53
+ </pack>
54
+ </packs>
55
+ </installation>)
56
+ puts "writeSimpleInstaller wrote #{File.expand_path(filename)}"
57
+ Buildr::write(filename, content)
58
+ end
59
+
60
+ it "must add correctly a single file" do
61
+ @project = define('nofile', :version => "1.0.2") do
62
+ pack = BuildrIzPack::Pack.new('myPackName', 'myPack description')
63
+ myInstXml = File.join(Dir.pwd, 'singleFileInstaller.xml')
64
+ pack.addFile(myInstXml)
65
+ xm = Builder::XmlMarkup.new(:target=>File.open(myInstXml, 'w+'), :indent => 2)
66
+ xm.instruct!
67
+ xm.installation('version'=>'1.0') {
68
+ xm.tag!('info') { xm.appversion(project.version); xm.appname(project.name) }
69
+ xm.guiprefs('width' => '400', 'height' => '400', 'resizable' => 'no')
70
+ xm.panels { |x| xm.panel('classname' => 'InstallPanel') }
71
+ xm.locale { |x| xm.langpack('iso3'=>'eng') }
72
+ xm.packs {
73
+ pack.emitIzPackXML(xm)
74
+ }
75
+ }
76
+ xm.target!().close
77
+ package(:izpack).input = myInstXml
78
+ @inhalt = IO.readlines(myInstXml).join('')
79
+ package(:izpack)
80
+ end
81
+ @project.package(:izpack).invoke
82
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
83
+ inhalt = IO.readlines(File.join(Dir.pwd, 'singleFileInstaller.xml')).join('')
84
+ File.exists?(@instPath).should be_true
85
+ (inhalt.index('<pack name="myPackName" required="no">') > 0).should be_true
86
+ (inhalt.index('<description>myPack description</description>') > 0).should be_true
87
+ (inhalt.index('singleFileInstaller.xml" target="$INSTALL_PATH/plugins/singleFileInstaller.xml"/>') > 0).should be_true
88
+ end
89
+
90
+
91
+ it "should generate an installer jar" do
92
+ define_project
93
+ @project.package(:izpack).invoke
94
+ @path = @project.package(:jar).to_s
95
+ File.exists?(@path).should be_true
96
+ @path.to_s.should include(".jar")
97
+ Zip::ZipFile.open(@path) do |zip|
98
+ zip.find_entry("Main.class").should_not be_nil
99
+ zip.find_entry("META-INF/MANIFEST.MF").should_not be_nil
100
+ end
101
+ File.exists?(@path).should be_true
102
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
103
+ File.exists?(@instPath).should be_true
104
+ end
105
+
106
+ it "should use the provided install.xml" do
107
+ define_project('withXml')
108
+ xmlPath = File.join(@project.path_to(:target), "install.xml")
109
+ writeSimpleInstaller(xmlPath)
110
+ @project.package(:izpack).input = xmlPath
111
+ @project.package(:izpack).invoke
112
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
113
+ File.exists?(@instPath).should be_true
114
+ end
115
+
116
+ it "must include at least one file" do
117
+ @project = define('nofile', :version => "1.0.2") do
118
+ package(:izpack)
119
+ end
120
+ lambda { project("nofile").package(:izpack).invoke }.should raise_error(/You must include at least one file to create an izPack installer/)
121
+ end
122
+
123
+ it "should be possible to add several files to several packs" do
124
+ define_project('severalPacks')
125
+ @project.package(:izpack).locales = ['eng', 'fra', 'deu']
126
+ Buildr.write(@project.path_to(:target)+"/1_5.txt", "This is file 1_5.txt")
127
+ Buildr.write(@project.path_to(:target)+"/3_7.txt", "This is file 3_7.txt")
128
+ s = ''
129
+ xm = Builder::XmlMarkup.new(:target=>s)
130
+ xm.packs {
131
+ xm.pack('name' => 'pack_3', 'required' => 'yes') {
132
+ xm.description("Niklaus ist am Testen")
133
+ xm.file('src'=> @project.path_to(:target)+"/1_5.txt", 'targetdir' =>'1/5')
134
+ xm.file('src'=> @project.path_to(:target)+"/3_7.txt", 'targetdir' =>'3/7')
135
+ }
136
+ }
137
+
138
+ @project.package(:izpack).packs = s
139
+ s = ''
140
+ xm = Builder::XmlMarkup.new(:target=>s)
141
+ xm.native('type'=>'izpack', 'name'=>'ShellLink.dll')
142
+ @project.package(:izpack).native = s
143
+ @project.package(:izpack).invoke
144
+ File.exists?(@project.package(:izpack).input).should be_true
145
+ content = IO.readlines(@project.package(:izpack).input)
146
+ content.join.should match('pack_3')
147
+ content.join.should match('1_5.txt')
148
+ content.join.should match('3/7')
149
+ content.join.should match('<native ')
150
+
151
+ @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
152
+ File.exists?(@instPath).should be_true
153
+ end
154
+
155
+ end
@@ -0,0 +1,31 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with this
3
+ # work for additional information regarding copyright ownership. The ASF
4
+ # licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations under
14
+ # the License.
15
+
16
+ unless defined?(SpecHelpers)
17
+ module SandboxHook
18
+
19
+ def SandboxHook.included(spec_helpers)
20
+ # For testing we use the gem requirements specified on the buildr4osgi.gemspec
21
+ spec = Gem::Specification.load(File.expand_path('../buildrizpack.gemspec', File.dirname(__FILE__)))
22
+ spec.dependencies.each { |dep| gem dep.name, dep.requirement.to_s }
23
+ # Make sure to load from these paths first, we don't want to load any
24
+ # code from Gem library.
25
+ $LOAD_PATH.unshift File.expand_path('../lib', File.dirname(__FILE__))
26
+ require 'buildrizpack'
27
+ end
28
+ end
29
+ require File.join(File.dirname(__FILE__), "/../buildr/spec/spec_helpers.rb")
30
+
31
+ end
metadata ADDED
@@ -0,0 +1,370 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: buildrizpack
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: "0.2"
6
+ platform: java
7
+ authors:
8
+ - Niklaus Giger
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain:
12
+ - gem-public_cert.pem
13
+ date: 2012-04-30 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rake
17
+ prerelease: false
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - "="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.8.7
24
+ type: :runtime
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: builder
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - "="
33
+ - !ruby/object:Gem::Version
34
+ version: 2.1.2
35
+ type: :runtime
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: net-ssh
39
+ prerelease: false
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - "="
44
+ - !ruby/object:Gem::Version
45
+ version: 2.0.23
46
+ type: :runtime
47
+ version_requirements: *id003
48
+ - !ruby/object:Gem::Dependency
49
+ name: net-sftp
50
+ prerelease: false
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - "="
55
+ - !ruby/object:Gem::Version
56
+ version: 2.0.4
57
+ type: :runtime
58
+ version_requirements: *id004
59
+ - !ruby/object:Gem::Dependency
60
+ name: rubyzip
61
+ prerelease: false
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - "="
66
+ - !ruby/object:Gem::Version
67
+ version: 0.9.4
68
+ type: :runtime
69
+ version_requirements: *id005
70
+ - !ruby/object:Gem::Dependency
71
+ name: highline
72
+ prerelease: false
73
+ requirement: &id006 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - "="
77
+ - !ruby/object:Gem::Version
78
+ version: 1.5.1
79
+ type: :runtime
80
+ version_requirements: *id006
81
+ - !ruby/object:Gem::Dependency
82
+ name: json_pure
83
+ prerelease: false
84
+ requirement: &id007 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - "="
88
+ - !ruby/object:Gem::Version
89
+ version: 1.4.3
90
+ type: :runtime
91
+ version_requirements: *id007
92
+ - !ruby/object:Gem::Dependency
93
+ name: rubyforge
94
+ prerelease: false
95
+ requirement: &id008 !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - "="
99
+ - !ruby/object:Gem::Version
100
+ version: 2.0.3
101
+ type: :runtime
102
+ version_requirements: *id008
103
+ - !ruby/object:Gem::Dependency
104
+ name: hoe
105
+ prerelease: false
106
+ requirement: &id009 !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - "="
110
+ - !ruby/object:Gem::Version
111
+ version: 2.3.3
112
+ type: :runtime
113
+ version_requirements: *id009
114
+ - !ruby/object:Gem::Dependency
115
+ name: atoulme-Antwrap
116
+ prerelease: false
117
+ requirement: &id010 !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - "="
121
+ - !ruby/object:Gem::Version
122
+ version: 0.7.1
123
+ type: :runtime
124
+ version_requirements: *id010
125
+ - !ruby/object:Gem::Dependency
126
+ name: diff-lcs
127
+ prerelease: false
128
+ requirement: &id011 !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - "="
132
+ - !ruby/object:Gem::Version
133
+ version: 1.1.2
134
+ type: :runtime
135
+ version_requirements: *id011
136
+ - !ruby/object:Gem::Dependency
137
+ name: rspec-expectations
138
+ prerelease: false
139
+ requirement: &id012 !ruby/object:Gem::Requirement
140
+ none: false
141
+ requirements:
142
+ - - "="
143
+ - !ruby/object:Gem::Version
144
+ version: 2.1.0
145
+ type: :runtime
146
+ version_requirements: *id012
147
+ - !ruby/object:Gem::Dependency
148
+ name: rspec-mocks
149
+ prerelease: false
150
+ requirement: &id013 !ruby/object:Gem::Requirement
151
+ none: false
152
+ requirements:
153
+ - - "="
154
+ - !ruby/object:Gem::Version
155
+ version: 2.1.0
156
+ type: :runtime
157
+ version_requirements: *id013
158
+ - !ruby/object:Gem::Dependency
159
+ name: rspec-core
160
+ prerelease: false
161
+ requirement: &id014 !ruby/object:Gem::Requirement
162
+ none: false
163
+ requirements:
164
+ - - "="
165
+ - !ruby/object:Gem::Version
166
+ version: 2.1.0
167
+ type: :runtime
168
+ version_requirements: *id014
169
+ - !ruby/object:Gem::Dependency
170
+ name: rspec
171
+ prerelease: false
172
+ requirement: &id015 !ruby/object:Gem::Requirement
173
+ none: false
174
+ requirements:
175
+ - - "="
176
+ - !ruby/object:Gem::Version
177
+ version: 2.1.0
178
+ type: :runtime
179
+ version_requirements: *id015
180
+ - !ruby/object:Gem::Dependency
181
+ name: xml-simple
182
+ prerelease: false
183
+ requirement: &id016 !ruby/object:Gem::Requirement
184
+ none: false
185
+ requirements:
186
+ - - "="
187
+ - !ruby/object:Gem::Version
188
+ version: 1.0.12
189
+ type: :runtime
190
+ version_requirements: *id016
191
+ - !ruby/object:Gem::Dependency
192
+ name: minitar
193
+ prerelease: false
194
+ requirement: &id017 !ruby/object:Gem::Requirement
195
+ none: false
196
+ requirements:
197
+ - - "="
198
+ - !ruby/object:Gem::Version
199
+ version: 0.5.3
200
+ type: :runtime
201
+ version_requirements: *id017
202
+ - !ruby/object:Gem::Dependency
203
+ name: jruby-openssl
204
+ prerelease: false
205
+ requirement: &id018 !ruby/object:Gem::Requirement
206
+ none: false
207
+ requirements:
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: "0.7"
211
+ type: :runtime
212
+ version_requirements: *id018
213
+ - !ruby/object:Gem::Dependency
214
+ name: rdoc
215
+ prerelease: false
216
+ requirement: &id019 !ruby/object:Gem::Requirement
217
+ none: false
218
+ requirements:
219
+ - - ">="
220
+ - !ruby/object:Gem::Version
221
+ version: "3.8"
222
+ type: :development
223
+ version_requirements: *id019
224
+ - !ruby/object:Gem::Dependency
225
+ name: rcov
226
+ prerelease: false
227
+ requirement: &id020 !ruby/object:Gem::Requirement
228
+ none: false
229
+ requirements:
230
+ - - "="
231
+ - !ruby/object:Gem::Version
232
+ version: 0.9.9
233
+ type: :development
234
+ version_requirements: *id020
235
+ - !ruby/object:Gem::Dependency
236
+ name: ci_reporter
237
+ prerelease: false
238
+ requirement: &id021 !ruby/object:Gem::Requirement
239
+ none: false
240
+ requirements:
241
+ - - "="
242
+ - !ruby/object:Gem::Version
243
+ version: 1.6.3
244
+ type: :development
245
+ version_requirements: *id021
246
+ - !ruby/object:Gem::Dependency
247
+ name: sdoc
248
+ prerelease: false
249
+ requirement: &id022 !ruby/object:Gem::Requirement
250
+ none: false
251
+ requirements:
252
+ - - ">="
253
+ - !ruby/object:Gem::Version
254
+ version: "0"
255
+ type: :development
256
+ version_requirements: *id022
257
+ - !ruby/object:Gem::Dependency
258
+ name: readline-ffi
259
+ prerelease: false
260
+ requirement: &id023 !ruby/object:Gem::Requirement
261
+ none: false
262
+ requirements:
263
+ - - ">="
264
+ - !ruby/object:Gem::Version
265
+ version: "0"
266
+ type: :development
267
+ version_requirements: *id023
268
+ - !ruby/object:Gem::Dependency
269
+ name: pygmentize
270
+ prerelease: false
271
+ requirement: &id024 !ruby/object:Gem::Requirement
272
+ none: false
273
+ requirements:
274
+ - - ">="
275
+ - !ruby/object:Gem::Version
276
+ version: "0"
277
+ type: :development
278
+ version_requirements: *id024
279
+ - !ruby/object:Gem::Dependency
280
+ name: bundler
281
+ prerelease: false
282
+ requirement: &id025 !ruby/object:Gem::Requirement
283
+ none: false
284
+ requirements:
285
+ - - ">="
286
+ - !ruby/object:Gem::Version
287
+ version: "0"
288
+ type: :development
289
+ version_requirements: *id025
290
+ - !ruby/object:Gem::Dependency
291
+ name: rubyforge
292
+ prerelease: false
293
+ requirement: &id026 !ruby/object:Gem::Requirement
294
+ none: false
295
+ requirements:
296
+ - - ">="
297
+ - !ruby/object:Gem::Version
298
+ version: "0"
299
+ type: :development
300
+ version_requirements: *id026
301
+ description: |
302
+ A buildr plugin contributing a new packaging method to package your project as a IzPack installer.
303
+
304
+ email: niklaus.giger@member.fsf.org
305
+ executables: []
306
+
307
+ extensions: []
308
+
309
+ extra_rdoc_files:
310
+ - README.rdoc
311
+ - LICENSE
312
+ - NOTICE
313
+ files:
314
+ - lib/buildrizpack.rb
315
+ - lib/buildrizpack/package.rb
316
+ - lib/buildrizpack/package.rb~
317
+ - rakelib/doc.rake~
318
+ - rakelib/checks.rake
319
+ - rakelib/package.rake~
320
+ - rakelib/package.rake
321
+ - rakelib/rspec.rake
322
+ - rakelib/stage.rake
323
+ - rakelib/doc.rake
324
+ - rakelib/release.rake
325
+ - rakelib/checks.rake~
326
+ - rakelib/rspec.rake~
327
+ - rakelib/all-in-one.rake
328
+ - rakelib/metrics.rake
329
+ - spec/spec_helpers.rb
330
+ - spec/buildrizpack/package_spec.rb~
331
+ - spec/buildrizpack/package_spec.rb
332
+ - buildrizpack.gemspec
333
+ - LICENSE
334
+ - NOTICE
335
+ - README.rdoc
336
+ - Rakefile
337
+ homepage: http://buildr.apache.org/
338
+ licenses: []
339
+
340
+ post_install_message: To get started run buildr --help
341
+ rdoc_options:
342
+ - --title
343
+ - BuildrIzPack
344
+ - --main
345
+ - README.rdoc
346
+ - --webcvs
347
+ - http://github.com/ngiger/buildrizpack
348
+ require_paths:
349
+ - lib
350
+ required_ruby_version: !ruby/object:Gem::Requirement
351
+ none: false
352
+ requirements:
353
+ - - ">="
354
+ - !ruby/object:Gem::Version
355
+ version: "0"
356
+ required_rubygems_version: !ruby/object:Gem::Requirement
357
+ none: false
358
+ requirements:
359
+ - - ">="
360
+ - !ruby/object:Gem::Version
361
+ version: "0"
362
+ requirements: []
363
+
364
+ rubyforge_project: buildrizpack
365
+ rubygems_version: 1.8.15
366
+ signing_key:
367
+ specification_version: 3
368
+ summary: A buildr plugin for packaging projects as IzPack installer
369
+ test_files: []
370
+