Skip to content

Commit

Permalink
* Fixed up the gemspec files so it doesn't have any interpolating str…
Browse files Browse the repository at this point in the history
…ings where they're not needed
  • Loading branch information
sjaveed committed Dec 8, 2013
1 parent b1ad0a5 commit 5dbb918
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions acts_as_nps_rateable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 4,19 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'acts_as_nps_rateable/version'

Gem::Specification.new do |gem|
gem.name = "acts_as_nps_rateable"
gem.name = 'acts_as_nps_rateable'
gem.version = ActsAsNpsRateable::VERSION
gem.authors = ["Shahbaz Javeed"]
gem.email = ["[email protected]"]
gem.authors = ['Shahbaz Javeed']
gem.email = ['[email protected]']
gem.description = %q{Rails gem that provides Net Promoter Score (NPS) ratings and analysis for ActiveRecord models. It can be used as a regular 0 to 10 rating scale and you can just ignore the NPS analysis methods.}
gem.summary = %q{Net Promoter Score ratings and analysis for ActiveRecord models}
gem.homepage = ""
gem.homepage = 'https://github.com/sjaveed/acts_as_nps_rateable'

gem.add_dependency "activerecord", "~> 3.0"
gem.add_dependency "rails", "~> 3.0"
gem.add_dependency 'activerecord', '~> 3.0'
gem.add_dependency 'rails', '~> 3.0'

gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.require_paths = ['lib']
end

0 comments on commit 5dbb918

Please sign in to comment.