Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Commit e53b11d

Browse files
committed
Land #42: Autocorrected frozen string literals with Rubocop
2 parents b062c38 + af7203e commit e53b11d

File tree

396 files changed

+792
-1
lines changed

Some content is hidden

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

396 files changed

+792
-1
lines changed

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
24
gem 'colorize', '>=0.8.1'
35
gem 'mime-types', '>=3.1'

env.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'date'
24
require 'fileutils'
35
require 'json'

github_updater.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'json'
24
require 'typhoeus'
35
require 'fileutils'

lib/cli/auto_complete.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Cli
24
# Functionality for configuring auto-complete functionality in Readline lib.
35
module AutoComplete

lib/cli/console.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'readline'
24

35
require 'modules'

lib/cli/context.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Cli
24
# A context which modules will be used in.
35
class Context

lib/cli/help.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Cli
24
# Methods for handling commands that provide the user with help info.
35
module Help

lib/cli/loaded_module.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Cli
24
# Methods for handling commands that interact with the currently loaded module.
35
module LoadedModule

lib/cli/module_info.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Cli
24
# Helper methods for outputing information about the currently loaded module.
35
module ModuleInfo

lib/cli/modules.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Cli
24
# Methods for handling module loading and searching.
35
module Modules

0 commit comments

Comments
 (0)