Skip to content

Commit

Permalink
Ruby 1.9 did not like my last name
Browse files Browse the repository at this point in the history
  • Loading branch information
rafmagana committed Jul 23, 2010
1 parent ace8880 commit 923ac3c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -9,8 +9,8 @@ begin
gem.description = "The Prowly gem is a simple wrapper to the Prowl API, you can use it to send messages to your iPhone in a Rails or pure Ruby application."
gem.email = "raf.magana@gmail.com"
gem.homepage = "http://github.com/rafmagana/prowly"
gem.authors = ["Rafael Magaña"]
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
gem.authors = ["Rafael Magana"]
gem.add_development_dependency "shoulda", ">= 0"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
Expand Down
16 changes: 8 additions & 8 deletions prowly.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{prowly}
s.version = "0.2.2"
s.version = "0.2.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Rafael Maga\303\261a"]
s.date = %q{2010-07-11}
s.authors = ["Rafael Magana"]
s.date = %q{2010-07-23}
s.default_executable = %q{prowly}
s.description = %q{The Prowly gem is a simple wrapper to the Prowl API, you can use it to send messages to your iPhone in a Rails or pure Ruby application.}
s.email = %q{raf.magana@gmail.com}
Expand Down Expand Up @@ -37,7 +37,7 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/rafmagana/prowly}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.rubygems_version = %q{1.3.7}
s.summary = %q{A Ruby interface to Prowl (http://prowl.weks.net/)}
s.test_files = [
"test/helper.rb",
Expand All @@ -48,13 +48,13 @@ Gem::Specification.new do |s|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<shoulda>, [">= 0"])
else
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
end
else
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
end
end

0 comments on commit 923ac3c

Please sign in to comment.