Skip to content

Commit

Permalink
update dependencies and set version 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mtigas committed Jan 18, 2014
1 parent 74112ac commit 56a81a5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
jruby-1.7.8
jruby-1.7.10
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ GEM
specs:
cuba (3.1.0)
rack
jruby-jars (1.7.8)
jruby-jars (1.7.10)
jruby-rack (1.1.13.3)
rack (1.5.2)
rake (10.1.0)
rake (10.1.1)
rubyzip (1.0.0)
rufus-lru (1.0.5)
tabula-extractor (0.7.1-java)
trollop (~> 2.0)
tilt (1.4.1)
tilt (2.0.0)
trollop (2.0)
warbler (1.4.0)
jruby-jars (>= 1.5.6)
Expand Down
7 changes: 6 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,12 @@ task :windows => [:create_version_file, :war] do |t|
puts "Building Windows executable..."
puts "======================================================\n\n"
cd File.join(File.expand_path(File.dirname(__FILE__)), "launch4j")
invoke_ant("-Dfull_version=#{build_version}", "-f", "../build.xml", "windows") { |f|
# exe files REALLY need x.x.x.x otherwise the compile fails.
win_build_version = build_version
while win_build_version.split('.').length < 4
win_build_version = "#{win_build_version}.0"
end
invoke_ant("-Dfull_version=#{win_build_version}", "-f", "../build.xml", "windows") { |f|
f.each { |line| puts line }
}
puts "\n======================================================"
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<property name="build.dir" value="build"/>
<property name="mac.dir" value="${build.dir}/mac" />
<property name="windows.dir" value="${build.dir}/windows" />
<property name="full_version" value="0.9.2.2"/>
<property name="full_version" value="0.9.3.0"/>
<property name="launch4j.dir" location="${build.dir}/../launch4j" />
<property name="launch4j.bindir" location="${build.dir}/../launch4j/bin" />

Expand Down

0 comments on commit 56a81a5

Please sign in to comment.