Skip to content

Commit

Permalink
- fixed typo in deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarmo Lehtpuu committed Dec 13, 2011
1 parent 103f8e7 commit a648013
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -13,8 +13,8 @@ begin
jewel.authors = ["Tanel Suurhans", "Tarmo Lehtpuu"]
jewel.files = FileList["lib/mailgun-rails.rb", "MIT-LICENCE", "README.markdown"]
jewel.add_dependency 'curb'
jewel.add_dependency 'active_support'
jewel.add_dependency 'action_mailer'
jewel.add_dependency 'activesupport'
jewel.add_dependency 'actionmailer'
end
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.0
0.1.1
14 changes: 7 additions & 7 deletions mailgun-rails.gemspec
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = "mailgun-rails"
s.version = "0.1.0"
s.version = "0.1.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tanel Suurhans", "Tarmo Lehtpuu"]
Expand All @@ -30,17 +30,17 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<curb>, [">= 0"])
s.add_runtime_dependency(%q<active_support>, [">= 0"])
s.add_runtime_dependency(%q<action_mailer>, [">= 0"])
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
s.add_runtime_dependency(%q<actionmailer>, [">= 0"])
else
s.add_dependency(%q<curb>, [">= 0"])
s.add_dependency(%q<active_support>, [">= 0"])
s.add_dependency(%q<action_mailer>, [">= 0"])
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<actionmailer>, [">= 0"])
end
else
s.add_dependency(%q<curb>, [">= 0"])
s.add_dependency(%q<active_support>, [">= 0"])
s.add_dependency(%q<action_mailer>, [">= 0"])
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<actionmailer>, [">= 0"])
end
end

0 comments on commit a648013

Please sign in to comment.