Skip to content

Commit

Permalink
Adding jruby-openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Bleigh committed Apr 8, 2011
1 parent c454ac5 commit a2a5495
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions development_dependencies.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
gem 'webmock', '~> 1.6.2'
gem 'rack-test', '~> 0.5.4'
gem 'json_pure', '~> 1.5.1' # multi_json implementation
gem 'evernote', '~> 0.9.0' unless defined?(JRUBY_VERSION)
gem 'evernote', '~> 0.9.0' unless RUBY_PLATFORM == 'java'
gem 'jruby-openssl', '~> 0.7.2' if RUBY_PLATFORM == 'java'
end
else #gemspec
gem.add_development_dependency 'rake'
Expand All @@ -21,5 +22,6 @@
gem.add_development_dependency 'webmock', '~> 1.3.4'
gem.add_development_dependency 'rack-test', '~> 0.5.4'
gem.add_development_dependency 'json_pure', '~> 1.5.1' # multi_json implementation
gem.add_development_dependency 'evernote', '~> 0.9.0'
gem.add_development_dependency 'evernote', '~> 0.9.0' unless RUBY_PLATFORM == 'java'
gem.add_runtime_dependency('jruby-openssl', '~> 0.7.2') if RUBY_PLATFORM == 'java'
end

0 comments on commit a2a5495

Please sign in to comment.