integer_expansion 0.0.0 → 1.0.0

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 (2) hide show
  1. data/lib/integer_expansion.rb +1 -1
  2. metadata +6 -9
@@ -13,7 +13,7 @@ class Integer
13
13
  old_roman(self)
14
14
  end
15
15
 
16
- def !
16
+ def fact
17
17
  factorial(self)
18
18
  end
19
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: integer_expansion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,9 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-11 00:00:00.000000000 Z
12
+ date: 2013-09-27 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: ! "1999.to_roman == 'MCMXCIX',\n 1999.to_old_roman
15
- == 'MDCCCCLXXXXVIIII',\n 4.! == 24,\n 1999.to_english
16
- \ == 'one thousand nine hundred and ninety nine',\n 1999.add_commas
17
- \ == '1,999'"
14
+ description: 1999#to_roman, 1999#to_old_roman, 4#fact, 1999#to_english, 1999#add_commas
18
15
  email: tydotg@gmail.com
19
16
  executables: []
20
17
  extensions: []
@@ -26,7 +23,7 @@ files:
26
23
  - lib/methods/factorial.rb
27
24
  - lib/methods/new_roman.rb
28
25
  - lib/methods/old_roman.rb
29
- homepage: http://rubygems.org/gems/integer_expansion
26
+ homepage: https://github.com/TGOlson/integer_expansion
30
27
  licenses:
31
28
  - MIT
32
29
  post_install_message:
@@ -50,6 +47,6 @@ rubyforge_project:
50
47
  rubygems_version: 1.8.25
51
48
  signing_key:
52
49
  specification_version: 3
53
- summary: ! 'Includes additional methods for the Ruby Integer class. Includes: #to_roman,
54
- #to_old_roman, #!, #to_english and #add_commas'
50
+ summary: ! 'Additional methods for the Ruby Integer class. Includes: #to_roman, #to_old_roman,
51
+ #!, #to_english and #add_commas'
55
52
  test_files: []