Skip to content

Commit

Permalink
[dist] rails 4.0.1 is out!
Browse files Browse the repository at this point in the history
The changes affecting reverse associations require one small
fix, but that's it
  • Loading branch information
coolo committed Nov 3, 2013
1 parent f1b44a1 commit 6c2a0d0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
40 changes: 20 additions & 20 deletions src/api/Gemfile.lock
Expand Up @@ -7,25 +7,25 @@ PATH
GEM
remote: https://rubygems.org/
specs:
actionmailer (4.0.0)
actionpack (= 4.0.0)
mail (~> 2.5.3)
actionpack (4.0.0)
activesupport (= 4.0.0)
actionmailer (4.0.1)
actionpack (= 4.0.1)
mail (~> 2.5.4)
actionpack (4.0.1)
activesupport (= 4.0.1)
builder (~> 3.1.0)
erubis (~> 2.7.0)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
activemodel (4.0.0)
activesupport (= 4.0.0)
activemodel (4.0.1)
activesupport (= 4.0.1)
builder (~> 3.1.0)
activerecord (4.0.0)
activemodel (= 4.0.0)
activerecord (4.0.1)
activemodel (= 4.0.1)
activerecord-deprecated_finders (~> 1.0.2)
activesupport (= 4.0.0)
activesupport (= 4.0.1)
arel (~> 4.0.0)
activerecord-deprecated_finders (1.0.3)
activesupport (4.0.0)
activesupport (4.0.1)
i18n (~> 0.6, >= 0.6.4)
minitest (~> 4.2)
multi_json (~> 1.3)
Expand Down Expand Up @@ -130,19 +130,19 @@ GEM
rack (>= 1.1.3)
rack-test (0.6.2)
rack (>= 1.0)
rails (4.0.0)
actionmailer (= 4.0.0)
actionpack (= 4.0.0)
activerecord (= 4.0.0)
activesupport (= 4.0.0)
rails (4.0.1)
actionmailer (= 4.0.1)
actionpack (= 4.0.1)
activerecord (= 4.0.1)
activesupport (= 4.0.1)
bundler (>= 1.3.0, < 2.0)
railties (= 4.0.0)
railties (= 4.0.1)
sprockets-rails (~> 2.0.0)
rails_tokeninput (1.6.1.rc1)
railties (>= 3.1.0)
railties (4.0.0)
actionpack (= 4.0.0)
activesupport (= 4.0.0)
railties (4.0.1)
actionpack (= 4.0.1)
activesupport (= 4.0.1)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
raindrops (0.12.0)
Expand Down
2 changes: 1 addition & 1 deletion src/api/webui/app/helpers/webui/webui_helper.rb
Expand Up @@ -483,7 +483,7 @@ def project_or_package_link(opts)
opts[:project_text] ||= format_projectname(opts[:project], opts[:creator])
end
if opts[:package] && prj && opts[:package] != :multiple
pkg = prj.packages.where(name: opts[:package]).select(:id, :name).first
pkg = prj.packages.where(name: opts[:package]).select(:id, :name, :db_project_id).first
end
if opts[:package]
link_to_package(prj, pkg, opts)
Expand Down

0 comments on commit 6c2a0d0

Please sign in to comment.