Skip to content

Commit ff2db4f

Browse files
committedSep 28, 2018
Code style for everything else
1 parent 316d434 commit ff2db4f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+327
-235
lines changed
 

‎Gemfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
24
# An alternative when rubygems.org is down
35
# source 'http://production.cf.rubygems.org/'
@@ -36,9 +38,9 @@ gem 'pghero'
3638

3739
gem 'swagger-blocks', '~> 1.3.4'
3840

39-
gem 'sass-rails', '~> 5.0'
4041
gem 'bootstrap', '~> 4.0.0.beta2.1'
41-
gem "font-awesome-rails"
42+
gem 'font-awesome-rails'
43+
gem 'sass-rails', '~> 5.0'
4244

4345
group :assets do
4446
gem 'jquery-rails', '~> 3.1.2'

‎Rakefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# frozen_string_literal: true
2+
13
# Add your own tasks in files placed in lib/tasks ending in .rake,
24
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
35

4-
require File.expand_path('../config/application', __FILE__)
6+
require File.expand_path('config/application', __dir__)
57
require 'rake'
68

79
TmcServer::Application.load_tasks

0 commit comments

Comments
 (0)
Please sign in to comment.