big_decimal_inspect 0.0.1 → 0.0.2
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 +4 -4
- data/.gitignore +13 -0
- data/Gemfile +0 -1
- data/big_decimal_inspect.gemspec +5 -5
- metadata +7 -8
- data/.ruby-version +0 -1
- data/Gemfile.lock +0 -44
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c953feb5fc2b12c49dd0e1e2043ac8dd88d07fd
|
|
4
|
+
data.tar.gz: 651e9bd0ae4061c4a252a0acdd28b9a60dbe2ebc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddf04f8839f2865085043bfd5651977ab01713e22c890e912718bc10727d1adbae6f89ab27630cbc3180c7ee67ca640561f8b4a39c871ab3da9ca75b63216550
|
|
7
|
+
data.tar.gz: 640e2ab879d9a39725572a3ee0ca75891a3be76e7f6970c2964f1024c662dbc0d0c44450c930c6ebe13f4773cfca16186066f6950843370933f527ae1286ec57
|
data/.gitignore
ADDED
data/Gemfile
CHANGED
data/big_decimal_inspect.gemspec
CHANGED
|
@@ -4,18 +4,18 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "big_decimal_inspect"
|
|
7
|
-
gem.version = "0.0.
|
|
7
|
+
gem.version = "0.0.2"
|
|
8
8
|
gem.authors = ["Peter Graham"]
|
|
9
9
|
gem.email = ["peter@wealthsimple.com"]
|
|
10
|
-
gem.description = %q{}
|
|
11
|
-
gem.summary = %q{}
|
|
12
|
-
gem.homepage = "https://github.com/wealthsimple"
|
|
10
|
+
gem.description = %q{Readable BigDecimal#inspect output}
|
|
11
|
+
gem.summary = %q{Makes BigDecimal#inspect output more readable}
|
|
12
|
+
gem.homepage = "https://github.com/wealthsimple/big_decimal_inspect"
|
|
13
13
|
|
|
14
14
|
gem.files = `git ls-files`.split($/)
|
|
15
15
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
16
16
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
17
17
|
gem.require_paths = ["lib"]
|
|
18
|
-
gem.
|
|
18
|
+
gem.license = "MIT"
|
|
19
19
|
|
|
20
20
|
gem.add_development_dependency "rspec"
|
|
21
21
|
gem.add_development_dependency "rspec-its"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: big_decimal_inspect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Graham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -52,23 +52,22 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
-
description:
|
|
55
|
+
description: Readable BigDecimal#inspect output
|
|
56
56
|
email:
|
|
57
57
|
- peter@wealthsimple.com
|
|
58
58
|
executables: []
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".gitignore"
|
|
62
63
|
- ".rspec"
|
|
63
|
-
- ".ruby-version"
|
|
64
64
|
- Gemfile
|
|
65
|
-
- Gemfile.lock
|
|
66
65
|
- README.md
|
|
67
66
|
- big_decimal_inspect.gemspec
|
|
68
67
|
- lib/big_decimal_inspect.rb
|
|
69
68
|
- spec/big_decimal_inspect_spec.rb
|
|
70
69
|
- spec/spec_helper.rb
|
|
71
|
-
homepage: https://github.com/wealthsimple
|
|
70
|
+
homepage: https://github.com/wealthsimple/big_decimal_inspect
|
|
72
71
|
licenses:
|
|
73
72
|
- MIT
|
|
74
73
|
metadata: {}
|
|
@@ -88,10 +87,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
87
|
version: '0'
|
|
89
88
|
requirements: []
|
|
90
89
|
rubyforge_project:
|
|
91
|
-
rubygems_version: 2.
|
|
90
|
+
rubygems_version: 2.5.2
|
|
92
91
|
signing_key:
|
|
93
92
|
specification_version: 4
|
|
94
|
-
summary:
|
|
93
|
+
summary: Makes BigDecimal#inspect output more readable
|
|
95
94
|
test_files:
|
|
96
95
|
- spec/big_decimal_inspect_spec.rb
|
|
97
96
|
- spec/spec_helper.rb
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.2.3
|
data/Gemfile.lock
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
big_decimal_inspect (0.0.1)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: https://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
coderay (1.1.0)
|
|
10
|
-
diff-lcs (1.2.5)
|
|
11
|
-
method_source (0.8.2)
|
|
12
|
-
pry (0.10.2)
|
|
13
|
-
coderay (~> 1.1.0)
|
|
14
|
-
method_source (~> 0.8.1)
|
|
15
|
-
slop (~> 3.4)
|
|
16
|
-
rspec (3.4.0)
|
|
17
|
-
rspec-core (~> 3.4.0)
|
|
18
|
-
rspec-expectations (~> 3.4.0)
|
|
19
|
-
rspec-mocks (~> 3.4.0)
|
|
20
|
-
rspec-core (3.4.1)
|
|
21
|
-
rspec-support (~> 3.4.0)
|
|
22
|
-
rspec-expectations (3.4.0)
|
|
23
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
24
|
-
rspec-support (~> 3.4.0)
|
|
25
|
-
rspec-its (1.2.0)
|
|
26
|
-
rspec-core (>= 3.0.0)
|
|
27
|
-
rspec-expectations (>= 3.0.0)
|
|
28
|
-
rspec-mocks (3.4.0)
|
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
30
|
-
rspec-support (~> 3.4.0)
|
|
31
|
-
rspec-support (3.4.1)
|
|
32
|
-
slop (3.6.0)
|
|
33
|
-
|
|
34
|
-
PLATFORMS
|
|
35
|
-
ruby
|
|
36
|
-
|
|
37
|
-
DEPENDENCIES
|
|
38
|
-
big_decimal_inspect!
|
|
39
|
-
pry
|
|
40
|
-
rspec
|
|
41
|
-
rspec-its
|
|
42
|
-
|
|
43
|
-
BUNDLED WITH
|
|
44
|
-
1.10.6
|