Skip to content

Commit d12c495

Browse files
committed
Update build instructions
1 parent 5cea67b commit d12c495

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ rake javadoc
2525

2626
```bash
2727
jgem install propane # from rubygems
28-
jgem install propane-3.9.0-java.gem # local install
28+
jgem install propane-3.10.0-java.gem # local install
2929
# Alternative
3030
jruby -S gem install propane # from rubygems
31-
jruby -S gem install propane-3.9.0-java.gem # local install
31+
jruby -S gem install propane-3.10.0-java.gem # local install
3232
```
3333

3434
## Check Install

Rakefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ end
1818
desc 'Install'
1919
task :install do
2020
sh 'mvn dependency:copy'
21-
sh "mv target/propane-#{Propane::VERSION}.jar lib"
21+
FileUtils.mv("target/propane-#{Propane::VERSION}.jar", 'lib')
2222
end
2323

2424
desc 'Gem'
@@ -36,11 +36,6 @@ task :compile do
3636
sh './mvnw package'
3737
end
3838

39-
desc 'JRuby-Complete'
40-
task :install_complete do
41-
sh 'cd vendors && rake'
42-
end
43-
4439
desc 'Test'
4540
task :test do
4641
sh 'jruby test/helper_methods_test.rb'

0 commit comments

Comments
 (0)