aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2015-09-27 17:34:13 -0400
committerJeremy Daer <jeremydaer@gmail.com>2015-09-29 11:56:58 -0700
commit20ec1e922cc141364881b17e2509c4d7dccca695 (patch)
tree9bb87a716930bf6b056c8775928b89367647a6ea /Gemfile
parenteb73c58003f4e71317800d5dd44d05af991351a3 (diff)
downloadrails-20ec1e922cc141364881b17e2509c4d7dccca695.tar.gz
rails-20ec1e922cc141364881b17e2509c4d7dccca695.tar.bz2
rails-20ec1e922cc141364881b17e2509c4d7dccca695.zip
Eliminate overlapping `app/assets` load path
* Move `app/assets/manifest.js` to `app/assets/config/manifest.js`. Avoid the suggestion that you can/should deep-link `stylesheets/foo`. * Pull in all toplevel stylesheets and JavaScripts, not just `application.js` and `.css`. Demonstrate how to use `link_directory` with a specified `.js`/`.css` type. * Fix RAILS_ENV handling in assets tests. * Shush warnings spam from third-party libs that distract from tests.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 8bb4c7d7a9..70f58fe835 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,6 +5,10 @@ gemspec
# We need a newish Rake since Active Job sets its test tasks' descriptions.
gem 'rake', '>= 10.3'
+# Active Support depends on a prerelease concurrent-ruby 1.0.0, so track
+# latest master as it approaches release.
+gem 'concurrent-ruby', '~> 1.0.0.pre2', github: 'ruby-concurrency/concurrent-ruby'
+
# Active Job depends on the URI::GID::MissingModelIDError, which isn't released yet.
gem 'globalid', github: 'rails/globalid', branch: 'master'
gem 'rack', github: 'rack/rack', branch: 'master'
@@ -21,8 +25,8 @@ gem 'turbolinks', github: 'rails/turbolinks', branch: 'master'
gem 'arel', github: 'rails/arel', branch: 'master'
gem 'mail', github: 'mikel/mail', branch: 'master'
-gem 'sprockets', github: 'rails/sprockets', branch: 'master'
-gem 'sprockets-rails', github: 'rails/sprockets-rails', branch: 'master'
+gem 'sprockets', '~> 4.0', github: 'rails/sprockets', branch: 'master'
+gem 'sprockets-rails', '~> 3.0.0.beta3', github: 'rails/sprockets-rails', branch: 'master'
gem 'sass-rails', github: 'rails/sass-rails', branch: 'master'
# require: false so bcrypt is loaded only when has_secure_password is used.