Update to Turbolinks 5.0.0 final

This commit is contained in:
Sam Stephenson 2016-06-30 12:18:52 -05:00
parent d0a5f878d3
commit 10ba790124
3 changed files with 6 additions and 11 deletions

View File

@ -12,7 +12,7 @@ gem 'mocha', '~> 0.14', require: false
gem 'rack-cache', '~> 1.2' gem 'rack-cache', '~> 1.2'
gem 'jquery-rails' gem 'jquery-rails'
gem 'coffee-rails', github: 'rails/coffee-rails' gem 'coffee-rails', github: 'rails/coffee-rails'
gem 'turbolinks', github: 'turbolinks/turbolinks-rails' gem 'turbolinks', '~> 5'
# require: false so bcrypt is loaded only when has_secure_password is used. # 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) # This is to avoid Active Model (and by extension the entire framework)

View File

@ -36,13 +36,6 @@ GIT
specs: specs:
sass (3.4.22) sass (3.4.22)
GIT
remote: git://github.com/turbolinks/turbolinks-rails.git
revision: 65884729016dbb4d032f12bb01b7e7c1ddeb68ac
specs:
turbolinks (5.0.0.beta2)
turbolinks-source
PATH PATH
remote: . remote: .
specs: specs:
@ -321,7 +314,9 @@ GEM
thor (0.19.1) thor (0.19.1)
thread (0.1.7) thread (0.1.7)
thread_safe (0.3.5) 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) tzinfo (1.2.2)
thread_safe (~> 0.1) thread_safe (~> 0.1)
tzinfo-data (1.2016.4) tzinfo-data (1.2016.4)
@ -392,7 +387,7 @@ DEPENDENCIES
sqlite3 (~> 1.3.6) sqlite3 (~> 1.3.6)
stackprof stackprof
sucker_punch sucker_punch
turbolinks! turbolinks (~> 5)
tzinfo-data tzinfo-data
uglifier (>= 1.3.0) uglifier (>= 1.3.0)
w3c_validators w3c_validators

View File

@ -324,7 +324,7 @@ module Rails
"Use #{options[:javascript]} as the JavaScript library") "Use #{options[:javascript]} as the JavaScript library")
unless options[:skip_turbolinks] 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") "Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks")
end end