ae_fast_decimal_formatter 0.1.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59156225262394ee5540585652a72a196b60845ef06bb64d8409c590f62e535d
4
- data.tar.gz: 1dc099b29def36a2f513c6a70d3772ce5df6c48c7a0465ca64e39a300a9dbaa7
3
+ metadata.gz: 45ca777593c0bfaf6e4cac01b3681d91935a91a0b005defec7436f9fd9b44c39
4
+ data.tar.gz: be583138932ff4fe697f296bb57f691898f299fe6a1af7f2ed7be85f5d7cfffc
5
5
  SHA512:
6
- metadata.gz: 9d10f701251c18ca9bba7261635a8723370825a4abc5feee17520a7d9fb64d347bd5bf17fcbdd1e0ccd797bc6536895d9e3e7c7df780e41ddca6646d626b7fa4
7
- data.tar.gz: 70abf3b82f2e17cf81010fd8538095c041f717e9d3fc4035dffada029c043ca5e106ea716c696a5469df1fbd87cc42a1e27ab771cbaba23c7a7e1a5b958281ff
6
+ metadata.gz: 36437067c9f6a566b9894cb2f377a337a2d8aec466b46f856804027debc2ab583974cf325b45b71ef9e33f88235a9f2b3a2042dd2546119414f4931a3a0b0525
7
+ data.tar.gz: 00cf30e71c1fe476701dd362e97383ed9d89b7f5eeb24c83459d45dcae5ad3d2ba9a49737bc1263463191bd63640ff3f3b273b91384bcd2826228cecbb4c96db
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2019-2022 AppFolio, Inc
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/ae_fast_decimal_formatter/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'ae_fast_decimal_formatter'
7
+ spec.version = AeFastDecimalFormatter::VERSION
8
+ spec.platform = Gem::Platform::RUBY
9
+ spec.author = 'AppFolio'
10
+ spec.email = 'opensource@appfolio.com'
11
+ spec.description = 'Efficiently format decimal number.'
12
+ spec.summary = spec.description
13
+ spec.homepage = 'https://github.com/appfolio/ae_fast_decimal_formatter'
14
+ spec.license = 'MIT'
15
+ spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|ext/|LICENSE.txt|.*gemspec)}] }
16
+ spec.require_paths = ['lib']
17
+ spec.extensions = ['ext/ae_fast_decimal_formatter/extconf.rb']
18
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.6.3')
19
+
20
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
+
22
+ spec.add_dependency('addressable', ['>= 2.3.6', '< 3'])
23
+ spec.add_dependency('rack', ['>= 2.2.3', '< 3'])
24
+ end
@@ -0,0 +1,3 @@
1
+ class AeFastDecimalFormatter
2
+ VERSION = '1.0.0'
3
+ end
metadata CHANGED
@@ -1,27 +1,70 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ae_fast_decimal_formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
- - Appfolio Inc.
7
+ - AppFolio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-10 00:00:00.000000000 Z
12
- dependencies: []
13
- description: Efficiently format decimal number so that reports of millions of decimal
14
- cells are fast
15
- email: dev@appfolio.com
11
+ date: 2022-02-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: addressable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.3.6
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '3'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 2.3.6
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '3'
33
+ - !ruby/object:Gem::Dependency
34
+ name: rack
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 2.2.3
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '3'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 2.2.3
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '3'
53
+ description: Efficiently format decimal number.
54
+ email: opensource@appfolio.com
16
55
  executables: []
17
56
  extensions:
18
57
  - ext/ae_fast_decimal_formatter/extconf.rb
19
58
  extra_rdoc_files: []
20
59
  files:
60
+ - LICENSE.txt
61
+ - ae_fast_decimal_formatter.gemspec
21
62
  - ext/ae_fast_decimal_formatter/ae_fast_decimal_formatter.c
22
63
  - ext/ae_fast_decimal_formatter/extconf.rb
23
64
  - lib/ae_fast_decimal_formatter.rb
24
- homepage: https://www.github.com/appfolio/ae_fast_decimal_formatter
65
+ - lib/ae_fast_decimal_formatter/ae_fast_decimal_formatter.bundle
66
+ - lib/ae_fast_decimal_formatter/version.rb
67
+ homepage: https://github.com/appfolio/ae_fast_decimal_formatter
25
68
  licenses:
26
69
  - MIT
27
70
  metadata:
@@ -35,17 +78,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
78
  - - ">="
36
79
  - !ruby/object:Gem::Version
37
80
  version: 2.6.3
38
- - - "<"
39
- - !ruby/object:Gem::Version
40
- version: '3'
41
81
  required_rubygems_version: !ruby/object:Gem::Requirement
42
82
  requirements:
43
83
  - - ">="
44
84
  - !ruby/object:Gem::Version
45
85
  version: '0'
46
86
  requirements: []
47
- rubygems_version: 3.0.8
87
+ rubygems_version: 3.3.3
48
88
  signing_key:
49
89
  specification_version: 4
50
- summary: Efficiently format decimal number
90
+ summary: Efficiently format decimal number.
51
91
  test_files: []