HappyFunCorp / happy_seed

A seed for planting new apps.
http://seed.happyfuncorp.com
MIT License
119 stars 22 forks source link

Fails due to hard-coded rails version dependency #28

Closed rreusser closed 9 years ago

rreusser commented 9 years ago

Trying to create an app but get:

Fetching gem metadata from https://rubygems.org/.........
Resolving dependencies...
Bundler could not find compatible versions for gem "rails":
  In Gemfile:
    happy_seed (>= 0) ruby depends on
      rails (~> 4.1.4) ruby

    rails (4.2.0.rc2)
        gsub    app/assets/javascripts/application.js
    generate    rspec:install
Bundler could not find compatible versions for gem "rails":
  In Gemfile:
    happy_seed (>= 0) ruby depends on
      rails (~> 4.1.4) ruby

    rails (4.2.0.rc2)

Is it necessary to specify the version or rails in the gemspec? I.e.:

s.add_dependency "rails", "~> 4.1.4"

Or at the very least, should we keep this current?

wschenk commented 9 years ago

I'm into taking out the version spec

On Saturday, December 20, 2014, Ricky Reusser notifications@github.com wrote:

Trying to create an app but get:

Fetching gem metadata from https://rubygems.org/......... Resolving dependencies... Bundler could not find compatible versions for gem "rails": In Gemfile: happy_seed (>= 0) ruby depends on rails (~> 4.1.4) ruby

rails (4.2.0.rc2)
    gsub    app/assets/javascripts/application.js
generate    rspec:install

Bundler could not find compatible versions for gem "rails": In Gemfile: happy_seed (>= 0) ruby depends on rails (~> 4.1.4) ruby

rails (4.2.0.rc2)

Is it necessary to specify the version or rails in the gemspec? I.e.:

s.add_dependency "rails", "~> 4.1.4"

Or at the very least, should we keep this current?

— Reply to this email directly or view it on GitHub https://github.com/HappyFunCorp/happy_seed/issues/28.

rreusser commented 9 years ago

No prob. I can submit a PR.