-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed up the gemspec files so it doesn't have any interpolating str…
…ings where they're not needed
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |