Skip to content

Commit

Permalink
sqlite3 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nofxx committed Jan 16, 2010
1 parent b0f050a commit 71a8ba6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -10,6 +10,7 @@ begin
gem.homepage = "http://github.com/nofxx/pyradise"
gem.authors = ["Marcos Piccinini"]
gem.add_dependency 'sequel'
gem.add_dependency 'sqlite3-ruby'
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.3.3
0.3.4
7 changes: 5 additions & 2 deletions pyradise.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{pyradise}
s.version = "0.3.3"
s.version = "0.3.4"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Marcos Piccinini"]
s.date = %q{2010-01-12}
s.date = %q{2010-01-16}
s.default_executable = %q{pyradise}
s.email = %q{x@nofxx.com}
s.executables = ["pyradise"]
Expand Down Expand Up @@ -54,11 +54,14 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<sequel>, [">= 0"])
s.add_runtime_dependency(%q<sqlite3-ruby>, [">= 0"])
else
s.add_dependency(%q<sequel>, [">= 0"])
s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
end
else
s.add_dependency(%q<sequel>, [">= 0"])
s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
end
end

0 comments on commit 71a8ba6

Please sign in to comment.