buildrizpack 0.1 → 0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,116 +13,109 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- if !RUBY_PLATFORM[/java/]
17
- gem 'rdoc'
18
- require 'rdoc/task'
19
- desc "Creates a symlink to rake's lib directory to support combined rdoc generation"
20
- file "rake/lib" do
21
- rake_path = $LOAD_PATH.find { |p| File.exist? File.join(p, "rake.rb") }
22
- mkdir_p "rake"
23
- File.symlink(rake_path, "rake/lib")
24
- end
25
-
26
- file "rdoc/installation.dtd" do
27
- mkdir_p "rdoc"
28
- File.symlink("installation.dtd", "rdoc/installation.dtd")
29
- end
16
+ gem 'rdoc'
17
+ require 'rdoc/task'
18
+ desc "Creates a symlink to rake's lib directory to support combined rdoc generation"
19
+ file "rake/lib" do
20
+ rake_path = $LOAD_PATH.find { |p| File.exist? File.join(p, "rake.rb") }
21
+ mkdir_p "rake"
22
+ File.symlink(rake_path, "rake/lib")
23
+ end
30
24
 
31
- desc "Generate RDoc documentation in rdoc/"
32
- RDoc::Task.new :rdoc do |rdoc|
33
- rdoc.rdoc_dir = 'rdoc'
34
- rdoc.title = spec.name
35
- rdoc.options = spec.rdoc_options.clone
36
- rdoc.rdoc_files.include('lib/**/*.rb')
37
- rdoc.rdoc_files.include spec.extra_rdoc_files
25
+ desc "Generate RDoc documentation in rdoc/"
26
+ RDoc::Task.new :rdoc do |rdoc|
27
+ rdoc.rdoc_dir = 'rdoc'
28
+ rdoc.title = spec.name
29
+ rdoc.options = spec.rdoc_options.clone
30
+ rdoc.rdoc_files.include('lib/**/*.rb')
31
+ rdoc.rdoc_files.include spec.extra_rdoc_files
38
32
 
39
- # include rake source for better inheritance rdoc
40
- rdoc.rdoc_files.include('rake/lib/**.rb')
41
- end
42
- task :rdoc => ["rake/lib", "rdoc/installation.dtd" ]
33
+ # include rake source for better inheritance rdoc
34
+ rdoc.rdoc_files.include('rake/lib/**.rb')
35
+ end
36
+ task :rdoc => ["rake/lib"]
43
37
 
44
- begin
45
- require 'jekylltask'
46
- module TocFilter
47
- def toc(input)
48
- output = "<ol class=\"toc\">"
49
- input.scan(/<(h2)(?:>|\s+(.*?)>)([^<]*)<\/\1\s*>/mi).each do |entry|
50
- id = (entry[1][/^id=(['"])(.*)\1$/, 2] rescue nil)
51
- title = entry[2].gsub(/<(\w*).*?>(.*?)<\/\1\s*>/m, '\2').strip
52
- if id
53
- output << %{<li><a href="##{id}">#{title}</a></li>}
54
- else
55
- output << %{<li>#{title}</li>}
56
- end
57
- end
58
- output << "</ol>"
59
- output
38
+ begin
39
+ require 'jekylltask'
40
+ module TocFilter
41
+ def toc(input)
42
+ output = "<ol class=\"toc\">"
43
+ input.scan(/<(h2)(?:>|\s+(.*?)>)([^<]*)<\/\1\s*>/mi).each do |entry|
44
+ id = (entry[1][/^id=(['"])(.*)\1$/, 2] rescue nil)
45
+ title = entry[2].gsub(/<(\w*).*?>(.*?)<\/\1\s*>/m, '\2').strip
46
+ if id
47
+ output << %{<li><a href="##{id}">#{title}</a></li>}
48
+ else
49
+ output << %{<li>#{title}</li>}
50
+ end
60
51
  end
52
+ output << "</ol>"
53
+ output
61
54
  end
62
- Liquid::Template.register_filter(TocFilter)
63
-
64
- desc "Generate Buildr documentation in _site/"
65
- JekyllTask.new :jekyll do |task|
66
- task.source = 'doc'
67
- task.target = '_site'
68
- end
69
-
70
- rescue LoadError
71
- puts "Buildr uses the jekyll gem to generate the Web site. You can install it by running bundler"
72
55
  end
56
+ Liquid::Template.register_filter(TocFilter)
73
57
 
74
- if `pygmentize -V`.empty?
75
- puts "Buildr uses the Pygments python library. You can install it by running 'sudo easy_install Pygments'"
58
+ desc "Generate Buildr documentation in _site/"
59
+ JekyllTask.new :jekyll do |task|
60
+ task.source = 'doc'
61
+ task.target = '_site'
76
62
  end
77
63
 
78
- desc "Generate Buildr documentation as buildr.pdf"
79
- file 'buildr.pdf'=>'_site' do |task|
80
- pages = File.read('_site/preface.html').scan(/<li><a href=['"]([^'"]+)/).flatten.map { |f| "_site/#{f}" }
81
- sh 'prince', '--input=html', '--no-network', '--log=prince_errors.log', "--output=#{task.name}", '_site/preface.html', *pages
82
- end
64
+ rescue LoadError
65
+ puts "Buildr uses the jekyll gem to generate the Web site. You can install it by running bundler"
66
+ end
83
67
 
84
- desc "Build a copy of the Web site in the ./_site"
85
- task :site=>['_site', :rdoc, '_reports/specs.html', '_reports/coverage', 'buildr.pdf'] do
86
- cp_r 'rdoc', '_site'
87
- fail 'No RDocs in site directory' unless File.exist?('_site/rdoc/lib/buildr_rb.html')
88
- cp '_reports/specs.html', '_site'
89
- cp_r '_reports/coverage', '_site'
90
- fail 'No coverage report in site directory' unless File.exist?('_site/coverage/index.html')
91
- cp 'CHANGELOG', '_site'
92
- open("_site/.htaccess", "w") do |htaccess|
93
- htaccess << %Q{
68
+ if `pygmentize -V`.empty?
69
+ puts "Buildr uses the Pygments python library. You can install it by running 'sudo easy_install Pygments'"
70
+ end
71
+
72
+ desc "Generate Buildr documentation as buildr.pdf"
73
+ file 'buildr.pdf'=>'_site' do |task|
74
+ pages = File.read('_site/preface.html').scan(/<li><a href=['"]([^'"]+)/).flatten.map { |f| "_site/#{f}" }
75
+ sh 'prince', '--input=html', '--no-network', '--log=prince_errors.log', "--output=#{task.name}", '_site/preface.html', *pages
76
+ end
77
+
78
+ desc "Build a copy of the Web site in the ./_site"
79
+ task :site=>['_site', :rdoc, '_reports/specs.html', '_reports/coverage', 'buildr.pdf'] do
80
+ cp_r 'rdoc', '_site'
81
+ fail 'No RDocs in site directory' unless File.exist?('_site/rdoc/lib/buildr_rb.html')
82
+ cp '_reports/specs.html', '_site'
83
+ cp_r '_reports/coverage', '_site'
84
+ fail 'No coverage report in site directory' unless File.exist?('_site/coverage/index.html')
85
+ cp 'CHANGELOG', '_site'
86
+ open("_site/.htaccess", "w") do |htaccess|
87
+ htaccess << %Q{
94
88
  <FilesMatch "CHANGELOG">
95
89
  ForceType 'text/plain; charset=UTF-8'
96
90
  </FilesMatch>
97
91
  }
98
- end
99
- cp 'buildr.pdf', '_site'
100
- fail 'No PDF in site directory' unless File.exist?('_site/buildr.pdf')
101
- puts 'OK'
102
92
  end
93
+ cp 'buildr.pdf', '_site'
94
+ fail 'No PDF in site directory' unless File.exist?('_site/buildr.pdf')
95
+ puts 'OK'
96
+ end
103
97
 
104
98
  # Publish prerequisites to Web site.
105
- task 'publish'=>:site do
106
- target = "people.apache.org:/www/#{spec.name}.apache.org/"
107
- puts "Uploading new site to #{target} ..."
108
- sh 'rsync', '--progress', '--recursive', '--delete', '_site/', target
109
- sh 'ssh', 'people.apache.org', 'chmod', '-f', '-R', 'g+w', "/www/#{spec.name}.apache.org/*"
110
- puts "Done"
111
- end
99
+ task 'publish'=>:site do
100
+ target = "people.apache.org:/www/#{spec.name}.apache.org/"
101
+ puts "Uploading new site to #{target} ..."
102
+ sh 'rsync', '--progress', '--recursive', '--delete', '_site/', target
103
+ sh 'ssh', 'people.apache.org', 'chmod', '-f', '-R', 'g+w', "/www/#{spec.name}.apache.org/*"
104
+ puts "Done"
105
+ end
112
106
 
113
107
  # Update HTML + PDF documentation (but not entire site; no specs, coverage, etc.)
114
- task 'publish-doc' => ['buildr.pdf', '_site'] do
115
- cp 'buildr.pdf', '_site'
116
- target = "people.apache.org:/www/#{spec.name}.apache.org/"
117
- puts "Uploading new site to #{target} ..."
118
- sh 'rsync', '--progress', '--recursive', '_site/', target # Note: no --delete
119
- sh 'ssh', 'people.apache.org', 'chmod', '-f', '-R', 'g+w', "/www/#{spec.name}.apache.org/*"
120
- puts "Done"
121
- end
108
+ task 'publish-doc' => ['buildr.pdf', '_site'] do
109
+ cp 'buildr.pdf', '_site'
110
+ target = "people.apache.org:/www/#{spec.name}.apache.org/"
111
+ puts "Uploading new site to #{target} ..."
112
+ sh 'rsync', '--progress', '--recursive', '_site/', target # Note: no --delete
113
+ sh 'ssh', 'people.apache.org', 'chmod', '-f', '-R', 'g+w', "/www/#{spec.name}.apache.org/*"
114
+ puts "Done"
115
+ end
122
116
 
123
- task :clobber do
124
- rm_rf '_site'
125
- rm_f 'buildr.pdf'
126
- rm_f 'prince_errors.log'
127
- end
117
+ task :clobber do
118
+ rm_rf '_site'
119
+ rm_f 'buildr.pdf'
120
+ rm_f 'prince_errors.log'
128
121
  end
@@ -46,18 +46,3 @@ end
46
46
  @specs.values.each do |s|
47
47
  Gem::PackageTask.new(s) { |task| }
48
48
  end
49
-
50
-
51
- desc "Upload snapshot packages over to people.apache.org"
52
- task :snapshot=>[:package] do
53
- rm_rf '_snapshot' # Always start with empty directory
54
- puts "Copying existing gems from Apache"
55
- sh 'rsync', '--progress', '--recursive', 'people.apache.org:public_html/buildr/snapshot/', '_snapshot/'
56
- puts "Copying new gems over"
57
- cp FileList['pkg/{*.gem,*.tgz,*.zip}'], '_snapshot/gems'
58
- puts "Generating gem index ..."
59
- sh 'gem', 'generate_index', '--directory', '_snapshot'
60
- puts "Copying gem and index back to Apache"
61
- sh 'rsync', '--progress', '--recursive', '_snapshot/', 'people.apache.org:public_html/buildr/snapshot/'
62
- end
63
- task(:clobber) { rm_rf '_snapshot' }
@@ -41,18 +41,6 @@ task :uninstall do |task|
41
41
  end
42
42
 
43
43
 
44
- if Dir.glob(File.join('lib','**', '*.java')).size > 0
45
- desc "Compile Java libraries used by Buildr"
46
- task :compile do
47
- puts "Compiling Java libraries ..."
48
- args = Config::CONFIG['ruby_install_name'], File.expand_path(RUBY_PLATFORM[/java/] ? '_jbuildr' : '_buildr'), '--buildfile', 'buildr.buildfile', 'compile'
49
- args << '--trace' if Rake.application.options.trace
50
- sh *args
51
- end
52
- file Gem::PackageTask.new(spec).package_dir => :compile
53
- file Gem::PackageTask.new(spec).package_dir_path => :compile
54
- end
55
-
56
44
  # We also need the other packages (JRuby if building on Ruby, and vice versa)
57
45
  # Must call new with block, even if block does nothing, otherwise bad things happen.
58
46
  @specs.values.each do |s|
@@ -19,7 +19,7 @@ begin
19
19
 
20
20
  def default_spec_opts
21
21
  default = %w{--format documentation --out _reports/specs.txt --backtrace}
22
- default << '--colour' if $stdout.isatty && !(Config::CONFIG['host_os'] =~ /mswin|win32|dos/i)
22
+ default << '--colour' if $stdout.isatty && !(RbConfig::CONFIG['host_os'] =~ /mswin|win32|dos/i)
23
23
  default
24
24
  end
25
25
 
@@ -33,7 +33,7 @@ begin
33
33
  end
34
34
 
35
35
  desc "Run all specs"
36
- RSpec::Core::RakeTask.new :spec=>['_reports', :compile] do |task|
36
+ RSpec::Core::RakeTask.new :spec=>['_reports'] do |task|
37
37
  ENV['USE_FSC'] = 'no'
38
38
  task.rspec_files = FileList['spec/**/*_spec.rb']
39
39
  task.rspec_files.exclude('spec/groovy/*') if RUBY_PLATFORM[/java/]
@@ -57,6 +57,36 @@ describe BuildrIzPack::IzPackTask do
57
57
  Buildr::write(filename, content)
58
58
  end
59
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
+
60
90
  it "should generate an installer jar" do
61
91
  define_project
62
92
  @project.package(:izpack).invoke
@@ -80,7 +110,6 @@ describe BuildrIzPack::IzPackTask do
80
110
  @project.package(:izpack).invoke
81
111
  @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
82
112
  File.exists?(@instPath).should be_true
83
- FileUtils.cp(@instPath, "/home/niklaus/tmp.jar", :verbose => true) if File.directory?('/home/niklaus')
84
113
  end
85
114
 
86
115
  it "must include at least one file" do
@@ -120,7 +149,6 @@ describe BuildrIzPack::IzPackTask do
120
149
 
121
150
  @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
122
151
  File.exists?(@instPath).should be_true
123
- FileUtils.cp(@instPath, "/home/niklaus/severalPacks.jar", :verbose => true) if File.directory?('/home/niklaus')
124
152
  end
125
153
 
126
154
  end
@@ -57,6 +57,37 @@ describe BuildrIzPack::IzPackTask do
57
57
  Buildr::write(filename, content)
58
58
  end
59
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
+
60
91
  it "should generate an installer jar" do
61
92
  define_project
62
93
  @project.package(:izpack).invoke
@@ -80,7 +111,6 @@ describe BuildrIzPack::IzPackTask do
80
111
  @project.package(:izpack).invoke
81
112
  @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
82
113
  File.exists?(@instPath).should be_true
83
- FileUtils.cp(@instPath, "/home/niklaus/tmp.jar", :verbose => true) if File.directory?('/home/niklaus')
84
114
  end
85
115
 
86
116
  it "must include at least one file" do
@@ -93,8 +123,8 @@ describe BuildrIzPack::IzPackTask do
93
123
  it "should be possible to add several files to several packs" do
94
124
  define_project('severalPacks')
95
125
  @project.package(:izpack).locales = ['eng', 'fra', 'deu']
96
- Buildr.write(path_to(:target)+"/1_5.txt", "This is file 1_5.txt")
97
- Buildr.write(path_to(:target)+"/3_7.txt", "This is file 3_7.txt")
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")
98
128
  s = ''
99
129
  xm = Builder::XmlMarkup.new(:target=>s)
100
130
  xm.packs {
@@ -120,7 +150,6 @@ describe BuildrIzPack::IzPackTask do
120
150
 
121
151
  @instPath = File.join(@project.path_to(:target, :main), "#{@project.name}-#{@project.version}.izpack.jar")
122
152
  File.exists?(@instPath).should be_true
123
- FileUtils.cp(@instPath, "/home/niklaus/severalPacks.jar", :verbose => true) if File.directory?('/home/niklaus')
124
153
  end
125
154
 
126
155
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildrizpack
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: '0.2'
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,48 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain:
12
- - ! '-----BEGIN CERTIFICATE-----
13
-
14
- MIIDVDCCAjygAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMRYwFAYDVQQDDA1uaWts
15
-
16
- YXVzLmdpZ2VyMSIwIAYKCZImiZPyLGQBGRYSZ2lnZXItZWxlY3Ryb25pcXVlMRIw
17
-
18
- EAYKCZImiZPyLGQBGRYCY2gwHhcNMTIwNDIyMTIzNDMyWhcNMTMwNDIyMTIzNDMy
19
-
20
- WjBQMRYwFAYDVQQDDA1uaWtsYXVzLmdpZ2VyMSIwIAYKCZImiZPyLGQBGRYSZ2ln
21
-
22
- ZXItZWxlY3Ryb25pcXVlMRIwEAYKCZImiZPyLGQBGRYCY2gwggEiMA0GCSqGSIb3
23
-
24
- DQEBAQUAA4IBDwAwggEKAoIBAQDphgCy7CekTfJ37KFSy/l2z6dREAwpv02H0BOp
25
-
26
- di+fAV8/f2FfZdEMCbuOv8AQHuNQz3mpjRirJ6Jh1oBA2DjkgwYPp0E1dbxz59WC
27
-
28
- pUCc/3L3DW5MJ50ZXOCPn1aTF9FQznTgV1OPDmEp0M+A11JJ560IyUW/GSsCqElE
29
-
30
- bgiItnduhIUDO5/cx4tFpAmDi4h77a1uUCdl+I6jQmxYrJJS8oLBdYdBoyYXAh+v
31
-
32
- lD6Hqv48no2L6eE2FWNUTY6vT6/tqSXNjMbKheuY2nUNFUq99eX3y2+jwCswBPvM
33
-
34
- PSaH4dx2A8MI3Xc8bLWbpiu/6F5b7SdR3SFuIhAzpkqWvMsdAgMBAAGjOTA3MAkG
35
-
36
- A1UdEwQCMAAwHQYDVR0OBBYEFPzxnsjQO72GqJrbvhG6e3tfb55AMAsGA1UdDwQE
37
-
38
- AwIEsDANBgkqhkiG9w0BAQUFAAOCAQEA6CLszYI7oIO//Se5XOM/e2qaN+3cdtu3
39
-
40
- Fld9mU5P+LyQIbBugwu6G9mKrs3+FS0gNAaq07LjUnVyH3N4yjG8edfu3qc9y2KM
41
-
42
- mvao6+beTUMAfLMKA4Qk8V5Baz1ECUl3086Oa0WL0b4REcKLkCwWgMhJHevI3BDa
43
-
44
- j7wOK7BrXaQAQIFfjUgWxd/AFMvckfP2oceG/cfYgJpFNS3/eVETBRx+PAjAVLsP
45
-
46
- DxnkVG3Em79QFxw/m7DXGKJjXl5qjJiimJ6qwboHGhFLb6iINM7aF1m2TT7gvG5N
47
-
48
- jrWbj9e+jp76JmKxLpMbcxC2AsAIwAgE2+MffjBm0ICxb4ZvH9STsA==
49
-
50
- -----END CERTIFICATE-----
51
-
52
- '
53
- date: 2012-04-22 00:00:00.000000000 Z
12
+ - gem-public_cert.pem
13
+ date: 2012-04-30 00:00:00.000000000 Z
54
14
  dependencies:
55
15
  - !ruby/object:Gem::Dependency
56
16
  name: rake
@@ -139,7 +99,7 @@ dependencies:
139
99
  requirements:
140
100
  - - '='
141
101
  - !ruby/object:Gem::Version
142
- version: 1.6.2
102
+ version: 1.5.1
143
103
  type: :runtime
144
104
  prerelease: false
145
105
  version_requirements: !ruby/object:Gem::Requirement
@@ -147,7 +107,7 @@ dependencies:
147
107
  requirements:
148
108
  - - '='
149
109
  - !ruby/object:Gem::Version
150
- version: 1.6.2
110
+ version: 1.5.1
151
111
  - !ruby/object:Gem::Dependency
152
112
  name: json_pure
153
113
  requirement: !ruby/object:Gem::Requirement
@@ -203,7 +163,7 @@ dependencies:
203
163
  requirements:
204
164
  - - '='
205
165
  - !ruby/object:Gem::Version
206
- version: 1.3.7
166
+ version: 1.3.3
207
167
  type: :runtime
208
168
  prerelease: false
209
169
  version_requirements: !ruby/object:Gem::Requirement
@@ -211,23 +171,23 @@ dependencies:
211
171
  requirements:
212
172
  - - '='
213
173
  - !ruby/object:Gem::Version
214
- version: 1.3.7
174
+ version: 1.3.3
215
175
  - !ruby/object:Gem::Dependency
216
176
  name: atoulme-Antwrap
217
177
  requirement: !ruby/object:Gem::Requirement
218
178
  none: false
219
179
  requirements:
220
- - - ~>
180
+ - - '='
221
181
  - !ruby/object:Gem::Version
222
- version: 0.7.2
182
+ version: 0.7.1
223
183
  type: :runtime
224
184
  prerelease: false
225
185
  version_requirements: !ruby/object:Gem::Requirement
226
186
  none: false
227
187
  requirements:
228
- - - ~>
188
+ - - '='
229
189
  - !ruby/object:Gem::Version
230
- version: 0.7.2
190
+ version: 0.7.1
231
191
  - !ruby/object:Gem::Dependency
232
192
  name: diff-lcs
233
193
  requirement: !ruby/object:Gem::Requirement
@@ -341,61 +301,29 @@ dependencies:
341
301
  - !ruby/object:Gem::Version
342
302
  version: 0.5.3
343
303
  - !ruby/object:Gem::Dependency
344
- name: jekyll
345
- requirement: !ruby/object:Gem::Requirement
346
- none: false
347
- requirements:
348
- - - '='
349
- - !ruby/object:Gem::Version
350
- version: 0.11.0
351
- type: :development
352
- prerelease: false
353
- version_requirements: !ruby/object:Gem::Requirement
354
- none: false
355
- requirements:
356
- - - '='
357
- - !ruby/object:Gem::Version
358
- version: 0.11.0
359
- - !ruby/object:Gem::Dependency
360
- name: RedCloth
361
- requirement: !ruby/object:Gem::Requirement
362
- none: false
363
- requirements:
364
- - - '='
365
- - !ruby/object:Gem::Version
366
- version: 4.2.9
367
- type: :development
368
- prerelease: false
369
- version_requirements: !ruby/object:Gem::Requirement
370
- none: false
371
- requirements:
372
- - - '='
373
- - !ruby/object:Gem::Version
374
- version: 4.2.9
375
- - !ruby/object:Gem::Dependency
376
- name: jekylltask
304
+ name: rdoc
377
305
  requirement: !ruby/object:Gem::Requirement
378
306
  none: false
379
307
  requirements:
380
- - - '='
308
+ - - ! '>='
381
309
  - !ruby/object:Gem::Version
382
- version: 1.1.0
310
+ version: '3.8'
383
311
  type: :development
384
312
  prerelease: false
385
313
  version_requirements: !ruby/object:Gem::Requirement
386
314
  none: false
387
315
  requirements:
388
- - - '='
316
+ - - ! '>='
389
317
  - !ruby/object:Gem::Version
390
- version: 1.1.0
318
+ version: '3.8'
391
319
  - !ruby/object:Gem::Dependency
392
- name: rdoc
320
+ name: rcov
393
321
  requirement: !ruby/object:Gem::Requirement
394
322
  none: false
395
323
  requirements:
396
324
  - - '='
397
325
  - !ruby/object:Gem::Version
398
- version: '3.8'
326
+ version: 0.9.9
399
327
  type: :development
400
328
  prerelease: false
401
329
  version_requirements: !ruby/object:Gem::Requirement
@@ -403,15 +331,15 @@ dependencies:
403
331
  requirements:
404
332
  - - '='
405
333
  - !ruby/object:Gem::Version
406
- version: '3.8'
334
+ version: 0.9.9
407
335
  - !ruby/object:Gem::Dependency
408
- name: rcov
336
+ name: ci_reporter
409
337
  requirement: !ruby/object:Gem::Requirement
410
338
  none: false
411
339
  requirements:
412
340
  - - '='
413
341
  - !ruby/object:Gem::Version
414
- version: 0.9.9
342
+ version: 1.6.3
415
343
  type: :development
416
344
  prerelease: false
417
345
  version_requirements: !ruby/object:Gem::Requirement
@@ -419,25 +347,25 @@ dependencies:
419
347
  requirements:
420
348
  - - '='
421
349
  - !ruby/object:Gem::Version
422
- version: 0.9.9
350
+ version: 1.6.3
423
351
  - !ruby/object:Gem::Dependency
424
- name: ci_reporter
352
+ name: sdoc
425
353
  requirement: !ruby/object:Gem::Requirement
426
354
  none: false
427
355
  requirements:
428
- - - '='
356
+ - - ! '>='
429
357
  - !ruby/object:Gem::Version
430
- version: 1.6.3
358
+ version: '0'
431
359
  type: :development
432
360
  prerelease: false
433
361
  version_requirements: !ruby/object:Gem::Requirement
434
362
  none: false
435
363
  requirements:
436
- - - '='
364
+ - - ! '>='
437
365
  - !ruby/object:Gem::Version
438
- version: 1.6.3
366
+ version: '0'
439
367
  - !ruby/object:Gem::Dependency
440
- name: debugger
368
+ name: readline-ffi
441
369
  requirement: !ruby/object:Gem::Requirement
442
370
  none: false
443
371
  requirements:
@@ -453,7 +381,7 @@ dependencies:
453
381
  - !ruby/object:Gem::Version
454
382
  version: '0'
455
383
  - !ruby/object:Gem::Dependency
456
- name: readline-ffi
384
+ name: pygmentize
457
385
  requirement: !ruby/object:Gem::Requirement
458
386
  none: false
459
387
  requirements:
@@ -523,18 +451,12 @@ files:
523
451
  - rakelib/stage.rake
524
452
  - rakelib/doc.rake
525
453
  - rakelib/release.rake
454
+ - rakelib/checks.rake~
526
455
  - rakelib/rspec.rake~
527
456
  - rakelib/all-in-one.rake
528
457
  - rakelib/metrics.rake
529
458
  - spec/buildrizpack/package_spec.rb~
530
459
  - spec/buildrizpack/package_spec.rb
531
- - spec/buildrizpack/buildfile.example_1~
532
- - spec/buildrizpack/buildfile.example_3~
533
- - spec/buildrizpack/example_1/buildfile
534
- - spec/buildrizpack/example_2/buildfile
535
- - spec/buildrizpack/example_3/buildfile
536
- - spec/buildrizpack/buildfile.example_2~
537
- - spec/spec_helpers.rb~
538
460
  - spec/spec_helpers.rb
539
461
  - buildrizpack.gemspec
540
462
  - LICENSE
@@ -566,8 +488,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
566
488
  - !ruby/object:Gem::Version
567
489
  version: '0'
568
490
  requirements: []
569
- rubyforge_project:
570
- rubygems_version: 1.8.22
491
+ rubyforge_project: buildrizpack
492
+ rubygems_version: 1.8.21
571
493
  signing_key:
572
494
  specification_version: 3
573
495
  summary: A buildr plugin for packaging projects as IzPack installer