Remove comments specifying encoding
In ruby 2.0, the default encoding is UTF-8, so these magic comment directives can be safely removed. https://www.ruby-lang.org/en/news/2013/02/24/ruby-2-0-0-p0-is-released/
This commit is contained in:
parent
0bb3352496
commit
6c325a9c50
|
@ -1,4 +1,3 @@
|
|||
# coding: utf-8
|
||||
lib = File.expand_path('../lib', __FILE__)
|
||||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||
require 'google/apis/version'
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# encoding:utf-8
|
||||
|
||||
# Copyright 2013 Google Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
|
Loading…
Reference in New Issue