Skip to content

Commit 0effdff

Browse files
committed
frozen_string_literal -> true
1 parent f7ea77b commit 0effdff

File tree

9 files changed

+18
-0
lines changed

9 files changed

+18
-0
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

35
gemspec

Rakefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# frozen_string_literal: true
2+
13
require "bundler/gem_tasks"

errbit_github_plugin.gemspec

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
lib = File.expand_path('../lib', __FILE__)
24
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
35
require 'errbit_github_plugin/version'

lib/errbit_github_plugin.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 "errbit_github_plugin/version"
24
require 'errbit_github_plugin/error'
35
require 'errbit_github_plugin/issue_tracker'

lib/errbit_github_plugin/error.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 ErrbitGithubPlugin
24
class AuthenticationError < Exception; end
35
end

lib/errbit_github_plugin/issue_tracker.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 'octokit'
24

35
module ErrbitGithubPlugin
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 ErrbitGithubPlugin
24
VERSION = '0.4.0'
35
end

spec/issue_tracker_spec.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
describe ErrbitGithubPlugin::IssueTracker do
24
describe '.label' do
35
it 'return LABEL' do

spec/spec_helper.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 'simplecov'
24

35
SimpleCov.start

0 commit comments

Comments
 (0)