Commit 2ffa9b1c1b787d631998dfbe36294aa87c471041
1 parent
69715aa6
Exists in
master
Replacing to-dos from gemspec file to get it building
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
surveyable.gemspec
... | ... | @@ -7,16 +7,16 @@ Gem::Specification.new do |spec| |
7 | 7 | spec.name = "surveyable" |
8 | 8 | spec.version = Surveyable::VERSION |
9 | 9 | spec.authors = ["Lee Dykes"] |
10 | - spec.email = ["lee.d.dykes@gmail.com"] | |
10 | + spec.email = ['lee.dykes@charity.org'] | |
11 | 11 | |
12 | - spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.} | |
13 | - spec.description = %q{TODO: Write a longer description or delete this line.} | |
14 | - spec.homepage = "TODO: Put your gem's website or public repo URL here." | |
12 | + spec.summary = 'Models for attaching questions to a survey (polymorphic) and answers to a response (polymorphic)' | |
13 | + spec.description = 'Models for attaching questions to a survey (polymorphic) and answers to a response (polymorphic)' | |
14 | + spec.homepage = 'https://github.com/globalimpact/surveyable' | |
15 | 15 | |
16 | 16 | # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or |
17 | 17 | # delete this section to allow pushing this gem to any host. |
18 | 18 | if spec.respond_to?(:metadata) |
19 | - spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" | |
19 | + spec.metadata['allowed_push_host'] = "charity.org" | |
20 | 20 | else |
21 | 21 | raise "RubyGems 2.0 or newer is required to protect against public gem pushes." |
22 | 22 | end |
... | ... | @@ -26,7 +26,7 @@ Gem::Specification.new do |spec| |
26 | 26 | spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } |
27 | 27 | spec.require_paths = ["lib"] |
28 | 28 | |
29 | - spec.add_development_dependency "bundler", "~> 1.10" | |
30 | - spec.add_development_dependency "rake", "~> 10.0" | |
31 | - spec.add_runtime_dependency "activerecord", "~> 4.0.0" | |
29 | + spec.add_development_dependency "bundler", ">= 1.10" | |
30 | + #spec.add_development_dependency "rake", "~> 10.0" | |
31 | + spec.add_runtime_dependency "activerecord", "~> 4.0", '>=4.0.0' | |
32 | 32 | end | ... | ... |