Skip to content

Commit 6a16ab0

Browse files
committed
removed all traces of turbolinks and cleaned up Gemfile
1 parent 18aeeda commit 6a16ab0

File tree

2 files changed

+26
-56
lines changed

2 files changed

+26
-56
lines changed

Gemfile

Lines changed: 24 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,31 @@
1-
source 'https://rubygems.org'
2-
3-
4-
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5-
gem 'rails', '4.2.4'
6-
# Use postgresql as the database for Active Record
7-
gem 'pg'
8-
# Use SCSS for stylesheets
9-
gem 'sass-rails', '~> 5.0'
10-
# Use Uglifier as compressor for JavaScript assets
11-
gem 'uglifier', '>= 1.3.0'
12-
# Use CoffeeScript for .coffee assets and views
13-
gem 'coffee-rails', '~> 4.1.0'
14-
# See https://github.com/rails/execjs#readme for more supported runtimes
15-
# gem 'therubyracer', platforms: :ruby
16-
17-
# Use jquery as the JavaScript library
18-
gem 'jquery-rails'
19-
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
20-
gem 'turbolinks'
21-
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
22-
gem 'jbuilder', '~> 2.0'
23-
# bundle exec rake doc:rails generates the API under doc/api.
24-
gem 'sdoc', '~> 0.4.0', group: :doc
25-
26-
# Use ActiveModel has_secure_password
27-
# gem 'bcrypt', '~> 3.1.7'
28-
29-
# Use Unicorn as the app server
30-
# gem 'unicorn'
31-
32-
# Use Capistrano for deployment
33-
# gem 'capistrano-rails', group: :development
34-
35-
gem 'bootstrap-sass', '~> 3.3.5'
36-
37-
gem 'bootswatch-rails'
38-
39-
gem 'nokogiri'
40-
41-
gem 'whenever', require: false
1+
source "https://rubygems.org"
2+
3+
4+
gem "rails", "4.2.4"
5+
gem "pg"
6+
gem "sass-rails", "~> 5.0"
7+
gem "uglifier", ">= 1.3.0"
8+
gem "coffee-rails", "~> 4.1.0"
9+
gem "jquery-rails"
10+
gem "jbuilder", "~> 2.0"
11+
gem "sdoc", "~> 0.4.0", group: :doc
12+
gem "bootstrap-sass", "~> 3.3.5"
13+
gem "bootswatch-rails"
14+
gem "nokogiri"
15+
gem "whenever", require: false
4216

4317
group :development, :test do
44-
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
45-
gem 'byebug'
46-
gem 'rspec-rails'
47-
gem 'database_cleaner'
48-
gem 'capybara'
49-
gem 'launchy'
50-
gem 'pry', :require => 'pry'
51-
gem 'shoulda-matchers'
18+
gem "byebug"
19+
gem "rspec-rails"
20+
gem "database_cleaner"
21+
gem "capybara"
22+
gem "launchy"
23+
gem "pry", :require => "pry"
24+
gem "shoulda-matchers"
5225
end
5326

5427
group :development do
55-
# Access an IRB console on exception pages or by using <%= console %> in views
56-
gem 'web-console', '~> 2.0'
57-
58-
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
59-
gem 'spring'
28+
gem "web-console", "~> 2.0"
29+
gem "spring"
6030
end
6131

app/views/layouts/application.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<html>
33
<head>
44
<title>Gitcommit</title>
5-
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
6-
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
5+
<%= stylesheet_link_tag 'application', media: 'all' %>
6+
<%= javascript_include_tag 'application' %>
77
<%= csrf_meta_tags %>
88
</head>
99
<body>

0 commit comments

Comments
 (0)