Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Missed the gem dependencies
Browse files Browse the repository at this point in the history
Can't wait for the dependencies to be automatically calculated depending
of the bundler specified ones !
  • Loading branch information
Damien Mathieu committed Jun 11, 2010
1 parent d980acf commit 9df118c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ begin
gemspec.email = "42@dmathieu.com"
gemspec.homepage = "http://github.com/dmathieu/jack"
gemspec.authors = ["Damien MATHIEU"]

gemspec.add_dependency('rdiscount', '>= 1.6.3.2')
gemspec.add_dependency('open4', '>= 1.0.1')
gemspec.add_dependency('albino', '>= 1.0')
gemspec.add_dependency('activesupport', '>= 3.0.0.beta4')
end
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1
0.0.2
15 changes: 14 additions & 1 deletion jackb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = %q{jackb}
s.version = "0.0.1"
s.version = "0.0.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Damien MATHIEU"]
Expand All @@ -21,6 +21,7 @@ Gem::Specification.new do |s|
"README.md",
"Rakefile",
"VERSION",
"jackb.gemspec",
"lib/jack.rb",
"lib/jack/highlight.rb",
"lib/jack/html.rb",
Expand Down Expand Up @@ -49,9 +50,21 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rdiscount>, [">= 1.6.3.2"])
s.add_runtime_dependency(%q<open4>, [">= 1.0.1"])
s.add_runtime_dependency(%q<albino>, [">= 1.0"])
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0.beta4"])
else
s.add_dependency(%q<rdiscount>, [">= 1.6.3.2"])
s.add_dependency(%q<open4>, [">= 1.0.1"])
s.add_dependency(%q<albino>, [">= 1.0"])
s.add_dependency(%q<activesupport>, [">= 3.0.0.beta4"])
end
else
s.add_dependency(%q<rdiscount>, [">= 1.6.3.2"])
s.add_dependency(%q<open4>, [">= 1.0.1"])
s.add_dependency(%q<albino>, [">= 1.0"])
s.add_dependency(%q<activesupport>, [">= 3.0.0.beta4"])
end
end

0 comments on commit 9df118c

Please sign in to comment.