diff --git a/Rakefile b/Rakefile index 4eb02f5..469d4ca 100644 --- a/Rakefile +++ b/Rakefile @@ -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 diff --git a/prowly.gemspec b/prowly.gemspec index 4fd61b7..87b14bc 100644 --- a/prowly.gemspec +++ b/prowly.gemspec @@ -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} @@ -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", @@ -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, [">= 0"]) + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_development_dependency(%q, [">= 0"]) else - s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) end else - s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) end end