Skip to content

Commit

Permalink
Unicode chars in gemspec were blowing up Pow.cx in development.
Browse files Browse the repository at this point in the history
  • Loading branch information
bouchard committed Sep 15, 2011
1 parent d148513 commit d0cb558
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 29 deletions.
1 change: 0 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ end
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""

rdoc.rdoc_dir = 'rdoc'
rdoc.title = "leaderboard #{version}"
rdoc.rdoc_files.include('README*')
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.2
0.4.3
66 changes: 39 additions & 27 deletions thumbs_up.gemspec
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

0 comments on commit d0cb558

Please sign in to comment.