humanize-number 0.1.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79c9e51b50526b6d23d3ad9116d66c7ee22dc8954274734846fe523872386b3e
4
- data.tar.gz: 103036a7357aff8d04ae8a9a7b020bfe50060042fca70cbe34527dcaf5568e6c
3
+ metadata.gz: 1bad29b42f534df3d5de3d61f51729d775e215622b8bea3eba15ead48ff69f2d
4
+ data.tar.gz: 8c97c2c55a2dec4b7a2ff6ba73a4912f6f6aa976a5a215b3dab479207999445c
5
5
  SHA512:
6
- metadata.gz: 51cf3dcb55743458c86b48ea98fd0ca222563dd1472eecc8cd2eabf2a1838609da73b558b1fd1168d0e1c17501745750fa7ba50900086ff1e88471eff718ff04
7
- data.tar.gz: 8077a948cf588e4d74c15456c48e700c6e61c163455bcafa666dfd86d92479124ef38bdf6a343dd054b5c84e2670b6b95bd7063fdcd983123eff3fa9f74e4a3e
6
+ metadata.gz: a83b8a282a53f4eb855bf6f80b173126d6445919fbafdf11e4d9341467ff0ad0fb60a00284af4a8f9c2ff5a6ea1b96c7543c344888c68d45ed1360be2861a966
7
+ data.tar.gz: 251db6c04139def364d8ce35c2e32a1b599db4fff4d37b7fc4c663ce2752bf24d7c094ee2906b5e0759ffa5a4348340c8424fb607c6def7d4f0ed575cba4dc87
data/.gitignore CHANGED
@@ -6,3 +6,5 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+
10
+ *.gem
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "humanize_number"
4
+ require "humanize-number"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
File without changes
@@ -1,7 +1,6 @@
1
-
2
1
  lib = File.expand_path("../lib", __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "humanize_number/version"
3
+ require "humanize-number/version"
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = "humanize-number"
@@ -1,3 +1,3 @@
1
1
  module HumanizeNumber
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -1,4 +1,4 @@
1
- require "humanize_number/version"
1
+ require "humanize-number/version"
2
2
 
3
3
  module HumanizeNumber
4
4
  THOUSAND = 1000
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: humanize-number
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hrvoje Šimić
@@ -61,16 +61,16 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - ".gitignore"
63
63
  - ".travis.yml"
64
- - Gemfile
65
- - README.md
66
- - Rakefile
67
64
  - bin/console
68
65
  - bin/setup
66
+ - gemfile
69
67
  - gemfile.lock
70
68
  - humanize-number.gemspec
71
- - lib/humanize_number.rb
72
- - lib/humanize_number/version.rb
69
+ - lib/humanize-number.rb
70
+ - lib/humanize-number/version.rb
73
71
  - license
72
+ - rakefile
73
+ - readme.md
74
74
  homepage: https://github.com/shime/humanize-number
75
75
  licenses:
76
76
  - MIT