mirror of https://github.com/rails/rails
Merge pull request #25607 from sstephenson/turbolinks-5-final
Update to Turbolinks 5.0.0 final
This commit is contained in:
commit
19ba6b8d4e
2
Gemfile
2
Gemfile
|
@ -12,7 +12,7 @@ gem 'mocha', '~> 0.14', require: false
|
|||
gem 'rack-cache', '~> 1.2'
|
||||
gem 'jquery-rails'
|
||||
gem 'coffee-rails'
|
||||
gem 'turbolinks', github: 'turbolinks/turbolinks-rails'
|
||||
gem 'turbolinks', '~> 5'
|
||||
|
||||
# require: false so bcrypt is loaded only when has_secure_password is used.
|
||||
# This is to avoid Active Model (and by extension the entire framework)
|
||||
|
|
13
Gemfile.lock
13
Gemfile.lock
|
@ -28,13 +28,6 @@ GIT
|
|||
specs:
|
||||
sass (3.4.22)
|
||||
|
||||
GIT
|
||||
remote: git://github.com/turbolinks/turbolinks-rails.git
|
||||
revision: 65884729016dbb4d032f12bb01b7e7c1ddeb68ac
|
||||
specs:
|
||||
turbolinks (5.0.0.beta2)
|
||||
turbolinks-source
|
||||
|
||||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
|
@ -316,7 +309,9 @@ GEM
|
|||
thor (0.19.1)
|
||||
thread (0.1.7)
|
||||
thread_safe (0.3.5)
|
||||
turbolinks-source (5.0.0.beta4)
|
||||
turbolinks (5.0.0)
|
||||
turbolinks-source (~> 5)
|
||||
turbolinks-source (5.0.0)
|
||||
tzinfo (1.2.2)
|
||||
thread_safe (~> 0.1)
|
||||
tzinfo-data (1.2016.4)
|
||||
|
@ -387,7 +382,7 @@ DEPENDENCIES
|
|||
sqlite3 (~> 1.3.6)
|
||||
stackprof
|
||||
sucker_punch
|
||||
turbolinks!
|
||||
turbolinks (~> 5)
|
||||
tzinfo-data
|
||||
uglifier (>= 1.3.0)
|
||||
w3c_validators
|
||||
|
|
|
@ -324,7 +324,7 @@ module Rails
|
|||
"Use #{options[:javascript]} as the JavaScript library")
|
||||
|
||||
unless options[:skip_turbolinks]
|
||||
gems << GemfileEntry.version("turbolinks", "~> 5.x",
|
||||
gems << GemfileEntry.version("turbolinks", "~> 5",
|
||||
"Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks")
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue