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.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/helpy.gemspec +1 -1
  3. data/lib/helpy.rb +4 -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.0"
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"
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "helpy"
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Brad Corson"]
@@ -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 'lib/boolean_extension'
13
- require 'lib/phone_extension'
14
- require 'lib/money_extension'
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
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helpy
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brad Corson