Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Strictfy code encodings
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jun 17, 2015
1 parent f58499d commit 529db81
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions lib/integer/base.rb
@@ -1,3 +1,4 @@
# coding: us-ascii
# Copyright (C) 2011 Kenichi Kamiya

class Integer
Expand Down
4 changes: 3 additions & 1 deletion lib/integer/base/core_ext.rb
@@ -1,3 +1,5 @@
# coding: us-ascii

require_relative '../base'

class String
Expand Down Expand Up @@ -54,4 +56,4 @@ class Bignum
alias_method :original_to_s, :to_s
remove_method :to_s

end
end
4 changes: 3 additions & 1 deletion lib/integer/base/requirements.rb
@@ -1,2 +1,4 @@
# coding: us-ascii

require_relative 'singleton_class'
require_relative 'version'
require_relative 'version'
4 changes: 3 additions & 1 deletion lib/integer/base/singleton_class.rb
@@ -1,3 +1,5 @@
# coding: us-ascii

class Integer; module Base

class << self
Expand Down Expand Up @@ -160,4 +162,4 @@ def string_unary_for(num, char)

end

end; end
end; end
4 changes: 3 additions & 1 deletion lib/integer/base/version.rb
@@ -1,5 +1,7 @@
# coding: us-ascii

class Integer; module Base

VERSION = '0.0.7.a'.freeze

end; end
end; end

0 comments on commit 529db81

Please sign in to comment.