euston-daemons 1.2.3-java → 1.2.4-java
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +6 -6
- data/euston-daemons.gemspec +1 -1
- data/lib/euston-daemons/version.rb +1 -1
- metadata +1 -1
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
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
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
|
-
|
110
|
+
end
|
111
111
|
end
|
112
112
|
|
113
113
|
desc "Build #{platform_dependant_gem_file} into the pkg directory"
|
data/euston-daemons.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'euston-daemons'
|
3
|
-
s.version = '1.2.
|
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']
|