Skip to content

Commit

Permalink
$ rubocop -a --only Style/FrozenStringLiteralComment
Browse files Browse the repository at this point in the history
  • Loading branch information
masutaka committed Apr 14, 2019
1 parent 51cd8bc commit 4f1409c
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

source 'https://rubygems.org'

# Specify your gem's dependencies in circleci-bundle-update-pr.gemspec
Expand Down
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# frozen_string_literal: true

require "bundler/gem_tasks"

1 change: 1 addition & 0 deletions bin/circleci-bundle-update-pr
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require "circleci/bundle/update/pr"
require 'optparse'
Expand Down
2 changes: 2 additions & 0 deletions circleci-bundle-update-pr.gemspec
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'circleci/bundle/update/pr/version'
Expand Down
2 changes: 2 additions & 0 deletions lib/circleci/bundle/update/pr.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require "circleci/bundle/update/pr/version"
require "octokit"
require "compare_linker"
Expand Down
2 changes: 2 additions & 0 deletions lib/circleci/bundle/update/pr/note.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module Circleci
module Bundle
module Update
Expand Down
2 changes: 2 additions & 0 deletions lib/circleci/bundle/update/pr/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module Circleci
module Bundle
module Update
Expand Down
2 changes: 2 additions & 0 deletions spec/circleci/bundle/update/pr/note_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'tmpdir'

describe Circleci::Bundle::Update::Pr::Note do
Expand Down
2 changes: 2 additions & 0 deletions spec/circleci/bundle/update/pr_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

describe Circleci::Bundle::Update::Pr do
describe '.github_host' do
subject { Circleci::Bundle::Update::Pr.send(:github_host) }
Expand Down
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'circleci/bundle/update/pr'

# This file was generated by the `rspec --init` command. Conventionally, all
Expand Down

0 comments on commit 4f1409c

Please sign in to comment.