forked from bouchard/thumbs_up
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unicode chars in gemspec were blowing up Pow.cx in development.
- Loading branch information
Showing
3 changed files
with
40 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.4.2 | ||
0.4.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,63 @@ | ||
# Generated by jeweler | ||
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
|
||
Gem::Specification.new do |s| | ||
s.name = %q{thumbs_up} | ||
s.version = IO.read('./VERSION') | ||
s.name = "thumbs_up" | ||
s.version = "0.4.3" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Brady Bouchard", "Peter Jackson", "Cosmin Radoi", "Bence Nagy", "Rob Maddox", "Wojciech Wnętrzak"] | ||
s.date = Date.today.to_s | ||
s.description = %q{ThumbsUp provides dead-simple voting capabilities to ActiveRecord models with karma calculation, a la stackoverflow.com.} | ||
s.email = %q{[email protected]} | ||
s.authors = ["Brady Bouchard", "Peter Jackson", "Cosmin Radoi", "Bence Nagy", "Rob Maddox", "Wojciech Wn\u{119}trzak"] | ||
s.date = "2011-09-15" | ||
s.description = "ThumbsUp provides dead-simple voting capabilities to ActiveRecord models with karma calculation, a la stackoverflow.com." | ||
s.email = "[email protected]" | ||
s.extra_rdoc_files = [ | ||
"README.markdown" | ||
] | ||
s.files = [ | ||
".gitignore", | ||
"CHANGELOG.markdown", | ||
"MIT-LICENSE", | ||
"README.markdown", | ||
"Rakefile", | ||
"VERSION", | ||
"lib/acts_as_voteable.rb", | ||
"lib/acts_as_voter.rb", | ||
"lib/generators/thumbs_up/templates/migration.rb", | ||
"lib/generators/thumbs_up/templates/vote.rb", | ||
"lib/generators/thumbs_up/thumbs_up_generator.rb", | ||
"lib/has_karma.rb", | ||
"lib/thumbs_up.rb", | ||
"rails/init.rb", | ||
"thumbs_up.gemspec" | ||
"CHANGELOG.markdown", | ||
"Gemfile", | ||
"MIT-LICENSE", | ||
"README.markdown", | ||
"Rakefile", | ||
"VERSION", | ||
"lib/acts_as_voteable.rb", | ||
"lib/acts_as_voter.rb", | ||
"lib/generators/thumbs_up/templates/migration.rb", | ||
"lib/generators/thumbs_up/templates/vote.rb", | ||
"lib/generators/thumbs_up/thumbs_up_generator.rb", | ||
"lib/has_karma.rb", | ||
"lib/thumbs_up.rb", | ||
"rails/init.rb", | ||
"test/test_helper.rb", | ||
"test/test_thumbs_up.rb", | ||
"thumbs_up.gemspec" | ||
] | ||
s.homepage = %q{http://github.com/brady8/thumbs_up} | ||
s.rdoc_options = ["--charset=UTF-8"] | ||
s.homepage = "http://github.com/brady8/thumbs_up" | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = %q{1.3.7} | ||
s.summary = %q{Voting for ActiveRecord with multiple vote sources and karma calculation.} | ||
s.rubygems_version = "1.8.10" | ||
s.summary = "Voting for ActiveRecord with multiple vote sources and karma calculation." | ||
|
||
if s.respond_to? :specification_version then | ||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | ||
s.specification_version = 3 | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<activerecord>, [">= 0"]) | ||
s.add_development_dependency(%q<bundler>, [">= 0"]) | ||
s.add_development_dependency(%q<jeweler>, [">= 0"]) | ||
s.add_development_dependency(%q<simplecov>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<activerecord>, [">= 0"]) | ||
s.add_dependency(%q<bundler>, [">= 0"]) | ||
s.add_dependency(%q<jeweler>, [">= 0"]) | ||
s.add_dependency(%q<simplecov>, [">= 0"]) | ||
end | ||
else | ||
s.add_dependency(%q<activerecord>, [">= 0"]) | ||
s.add_dependency(%q<bundler>, [">= 0"]) | ||
s.add_dependency(%q<jeweler>, [">= 0"]) | ||
s.add_dependency(%q<simplecov>, [">= 0"]) | ||
end | ||
end | ||
|