helpy 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/helpy.gemspec +1 -1
- data/lib/helpy.rb +4 -4
- metadata +3 -3
data/Rakefile
CHANGED
|
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
17
17
|
gem.name = "helpy"
|
|
18
|
-
gem.version = "0.1.
|
|
18
|
+
gem.version = "0.1.1"
|
|
19
19
|
gem.homepage = "http://github.com/corsonx/helpy"
|
|
20
20
|
gem.license = "MIT"
|
|
21
21
|
gem.summary = "Extensions to strings and numbers to enable phone formatting, money formatting, and true/false testing"
|
data/helpy.gemspec
CHANGED
data/lib/helpy.rb
CHANGED
|
@@ -9,9 +9,9 @@ Extend FixNum, Float, Bignum and String with phone, money and boolean functional
|
|
|
9
9
|
=end
|
|
10
10
|
|
|
11
11
|
$LOAD_PATH.unshift File.dirname(__FILE__)
|
|
12
|
-
require '
|
|
13
|
-
require '
|
|
14
|
-
require '
|
|
12
|
+
require 'boolean_extension'
|
|
13
|
+
require 'phone_extension'
|
|
14
|
+
require 'money_extension'
|
|
15
15
|
|
|
16
16
|
class Fixnum
|
|
17
17
|
include Boolinators
|
|
@@ -43,4 +43,4 @@ end
|
|
|
43
43
|
|
|
44
44
|
class FalseClass
|
|
45
45
|
include Boolinators
|
|
46
|
-
end
|
|
46
|
+
end
|
metadata
CHANGED