Skip to content

Commit

Permalink
removed hard dependency on ffi so that JRuby installs stop failing. C…
Browse files Browse the repository at this point in the history
…loses gh-30.
  • Loading branch information
jmettraux committed Feb 10, 2010
1 parent 37c3a19 commit bdd2ead
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Expand Up @@ -2,6 +2,11 @@
= rufus-tokyo CHANGELOG.txt


== rufus-tokyo - 1.0.7 released 2010/02/10

- gh #30 : removed hard dependency on ffi so that JRuby installs stop failing.


== rufus-tokyo - 1.0.6 released 2010/02/01

- gh #29 : segfault when getdup(unknown_key). Fixed, thanks Dmitry
Expand Down
1 change: 1 addition & 0 deletions CREDITS.txt
Expand Up @@ -26,6 +26,7 @@ Mark 'mebaran' http://github.com/mebaran

== feedback / support

Anthony Buck - hard dependency on ffi for JRuby
Dmitry A. Ustalov http://github.com/eveel
Aaron Zhang free/tcfree issue
Swerling http://github.com/swerling
Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -45,7 +45,8 @@ Finally rufus-tokyo includes ffi-based interfaces to Tokyo Dystopia (thanks to J

gem.test_file = 'spec/spec.rb'

gem.add_dependency 'ffi'
#gem.add_dependency 'ffi'
gem.add_development_dependency 'ffi'
gem.add_development_dependency 'yard', '>= 0'

#gem.files = Dir['lib/**/*.rb'] + Dir['*.txt'] - [ 'lib/tokyotyrant.rb' ]
Expand Down
2 changes: 1 addition & 1 deletion lib/rufus/tokyo/version.rb
Expand Up @@ -26,7 +26,7 @@
module Rufus
module Tokyo

VERSION = '1.0.6'
VERSION = '1.0.7'
end
end

6 changes: 3 additions & 3 deletions rufus-tokyo.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{rufus-tokyo}
s.version = "1.0.6"
s.version = "1.0.7"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["John Mettraux", "Zev Blut", "Jeremy Hinegardner", "James Edward Gray II"]
s.date = %q{2010-02-01}
s.date = %q{2010-02-10}
s.description = %q{
Ruby-ffi based lib to access Tokyo Cabinet and Tyrant.
Expand Down Expand Up @@ -123,7 +123,7 @@ Finally rufus-tokyo includes ffi-based interfaces to Tokyo Dystopia (thanks to J
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<ffi>, [">= 0"])
s.add_development_dependency(%q<ffi>, [">= 0"])
s.add_development_dependency(%q<yard>, [">= 0"])
else
s.add_dependency(%q<ffi>, [">= 0"])
Expand Down

0 comments on commit bdd2ead

Please sign in to comment.