rails / arel

A Relational Algebra
2.06k stars 390 forks source link

Release 8.0.0 to rubygems #466

Closed rmacklin closed 7 years ago

rmacklin commented 7 years ago

It seems that since https://github.com/rails/rails/pull/27503, a Gemfile with:

source 'https://rubygems.org'

gem 'rails', github: 'rails/rails'

fails bundle install with:

Fetching git://github.com/rails/rails.git
Fetching gem metadata from https://rubygems.org/..............
Fetching version metadata from https://rubygems.org/..
Resolving dependencies...
Bundler could not find compatible versions for gem "arel":
  In Gemfile:
    rails was resolved to 5.1.0.alpha, which depends on
      activerecord (= 5.1.0.alpha) was resolved to 5.1.0.alpha, which depends on
        arel (~> 8.0)

Could not find gem 'arel (~> 8.0)', which is required by gem 'activerecord (= 5.1.0.alpha)', in any of the sources.

Checking https://rubygems.org/gems/arel reveals that 8.0.0 has not been released to rubygems.

kamipo commented 7 years ago

Need to add gem "arel", github: "rails/arel" line also. https://github.com/rails/rails/blob/master/guides/bug_report_templates/active_record_master.rb#L11

rmacklin commented 7 years ago

Ah, so is 8.0.0 not ready for release?

kamipo commented 7 years ago

Yeah, I think so.

rmacklin commented 7 years ago

Ok, thanks. I'll close this then.