euston-daemons 1.2.3-java → 1.2.4-java

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/Rakefile CHANGED
@@ -101,13 +101,13 @@ task :release => :build do
101
101
 
102
102
  command = "gem push pkg/#{platform_dependant_gem_file}"
103
103
 
104
- # if jruby?
105
- # puts "--------------------------------------------------------------------------------------"
106
- # puts "can't push to rubygems using jruby at the moment, so switch to mri and run: #{command}"
107
- # puts "--------------------------------------------------------------------------------------"
108
- # else
104
+ if jruby?
105
+ puts "--------------------------------------------------------------------------------------"
106
+ puts "can't push to rubygems using jruby at the moment, so switch to mri and run: #{command}"
107
+ puts "--------------------------------------------------------------------------------------"
108
+ else
109
109
  sh command
110
- # end
110
+ end
111
111
  end
112
112
 
113
113
  desc "Build #{platform_dependant_gem_file} into the pkg directory"
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'euston-daemons'
3
- s.version = '1.2.3'
3
+ s.version = '1.2.4'
4
4
  s.platform = RUBY_PLATFORM.to_s == 'java' ? 'java' : Gem::Platform::RUBY
5
5
  s.authors = ['Lee Henson', 'Guy Boertje']
6
6
  s.email = ['lee.m.henson@gmail.com', 'guyboertje@gmail.com']
@@ -1,5 +1,5 @@
1
1
  module Euston
2
2
  module Daemons
3
- VERSION = "1.2.3"
3
+ VERSION = "1.2.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: euston-daemons
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.2.3
5
+ version: 1.2.4
6
6
  platform: java
7
7
  authors:
8
8
  - Lee Henson