Skip to content

Commit 454ebb5

Browse files
committedOct 28, 2018
Update code using rubocop's autocorrect linter
1 parent ed508a9 commit 454ebb5

File tree

126 files changed

+724
-478
lines changed

Some content is hidden

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

126 files changed

+724
-478
lines changed
 

‎Rakefile

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

5-
require File.expand_path('../config/application', __FILE__)
7+
require File.expand_path("../config/application", __FILE__)
68

79
Rake.application.options.trace = true
810

911
Gitscm::Application.load_tasks
10-

‎app/controllers/about_controller.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
class AboutController < ApplicationController
24

35
def index

0 commit comments

Comments
 (0)
Please sign in to comment.