Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
add frozen string literal comments
Browse files Browse the repository at this point in the history
  • Loading branch information
urkle committed May 6, 2022
1 parent 2f916b8 commit 39eee71
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .simplecov
@@ -1,3 +1,5 @@
# frozen_string_literal: true

SimpleCov.configure do
enable_coverage :branch
add_filter '/spec/'
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
@@ -1,3 +1,5 @@
# frozen_string_literal: true

source "http://rubygems.org"

gemspec
Expand Down
2 changes: 2 additions & 0 deletions Rakefile
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'bundler'
Bundler::GemHelper.install_tasks

Expand Down
2 changes: 2 additions & 0 deletions lib/schema_plus/compatibility.rb
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'schema_monkey'

require_relative 'compatibility/version'
Expand Down
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module SchemaPlus::Compatibility
module ActiveRecord
module ConnectionAdapters
Expand Down
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module SchemaPlus::Compatibility
module ActiveRecord
module ConnectionAdapters
Expand Down
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module SchemaPlus::Compatibility
module ActiveRecord
module ConnectionAdapters
Expand Down
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module SchemaPlus::Compatibility
module ActiveRecord
module ConnectionAdapters
Expand Down
2 changes: 2 additions & 0 deletions lib/schema_plus/compatibility/active_record/migration.rb
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module SchemaPlus::Compatibility
module ActiveRecord
module Migration
Expand Down
2 changes: 2 additions & 0 deletions lib/schema_plus/compatibility/version.rb
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module SchemaPlus
module Compatibility
VERSION = "1.0.0"
Expand Down
2 changes: 2 additions & 0 deletions lib/schema_plus_compatibility.rb
@@ -1 +1,3 @@
# frozen_string_literal: true

require_relative 'schema_plus/compatibility'
3 changes: 2 additions & 1 deletion schema_plus_compatibility.gemspec
@@ -1,4 +1,5 @@
# coding: utf-8
# frozen_string_literal: true

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'schema_plus/compatibility/version'
Expand Down
3 changes: 2 additions & 1 deletion spec/migration_spec.rb
@@ -1,4 +1,5 @@
# encoding: utf-8
# frozen_string_literal: true

require 'spec_helper'

describe ActiveRecord::Migration do
Expand Down
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require 'simplecov'
SimpleCov.start

Expand Down
3 changes: 2 additions & 1 deletion spec/tables_only_spec.rb
@@ -1,4 +1,5 @@
# encoding: utf-8
# frozen_string_literal: true

require 'spec_helper'

describe "tables_only" do
Expand Down

0 comments on commit 39eee71

Please sign in to comment.