Remove magic comment

Since the support version is Ruby 2.0 or later, magic comment is unnecessary.

`The UTF-8 default encoding, which make many magic comments omissible`
https://www.ruby-lang.org/en/news/2013/02/24/ruby-2-0-0-p0-is-released/
This commit is contained in:
swamp09 2017-10-23 21:08:38 +09:00
parent b632d135de
commit f24857a772
4 changed files with 0 additions and 4 deletions

View File

@ -1,4 +1,3 @@
# coding: utf-8
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

View File

@ -1,4 +1,3 @@
# coding: utf-8
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

View File

@ -1,4 +1,3 @@
# coding: utf-8
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

View File

@ -1,4 +1,3 @@
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "kaminari/version"