neatjson 0.3.3 → 0.3.4

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/neatjson.gemspec +13 -11
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f7545da8e38d691cb0449295f34cdd8ea014d84
4
- data.tar.gz: 3e10ff207247a397dc9c2efcea6375056995468e
3
+ metadata.gz: 53e8fd630d625edc34d2af45cb65d234e054b4e2
4
+ data.tar.gz: 967f1fe69f119a8b5d49e1464863ceea4d659273
5
5
  SHA512:
6
- metadata.gz: 2f9665339a7d3e524e798f40f555e76fa63eb1fd3daa443f76f66928d39165351fb77ee21ac0472950f5d5722b8f567a56d0b9529573f4772302bcdde5a52e19
7
- data.tar.gz: b6a833def30e44660707afe2a3616340051c32775b460b4cea85fc5c1d9b373b868f71218ab473459ab87b40e067eff8d1a6ef53cd7415c251f1b4106ba15859
6
+ metadata.gz: ee1f23f2a450d83b425a5fa05e982cb8d98d18c0f7095c3e25d2f2df4934f481d51131cc4337c3a35baf4c2240b0f42fcb2465d0a89db0c6be7f9338354f3722
7
+ data.tar.gz: 595c40ed30181960f70d572461a5bb6e2554caccd28554afdd90278a6bd76fa4476862003f47945f9d8a4312393696346d30ef22704eb4f476e2a107d2ec1581
data/neatjson.gemspec CHANGED
@@ -1,15 +1,17 @@
1
1
  # encoding: UTF-8
2
2
  require 'date'
3
3
  Gem::Specification.new do |s|
4
- s.name = "neatjson"
5
- s.version = "0.3.3"
6
- s.date = Date.today.iso8601
7
- s.authors = ["Gavin Kistner"]
8
- s.email = "gavin@phrogz.net"
9
- s.homepage = "http://github.com/Phrogz/NeatJSON"
10
- s.summary = "Pretty, powerful, flexible JSON generation."
11
- s.description = "Generate JSON strings from Ruby objects with flexible formatting options. The most important feature is that it can behave like pp, keeping arrays and objects on a single line when they fit."
12
- s.license = "MIT license (MIT)"
13
- s.files = Dir.glob("{lib,test}/**/*") + ['LICENSE.txt', 'README.md', '.yardopts', __FILE__]
14
- s.has_rdoc = 'yard'
4
+ s.name = "neatjson"
5
+ s.version = "0.3.4"
6
+ s.date = Date.today.iso8601
7
+ s.authors = ["Gavin Kistner"]
8
+ s.email = "gavin@phrogz.net"
9
+ s.homepage = "http://github.com/Phrogz/NeatJSON"
10
+ s.summary = "Pretty, powerful, flexible JSON generation."
11
+ s.description = "Generate JSON strings from Ruby objects with flexible formatting options. The most important feature is that it can behave like pp, keeping arrays and objects on a single line when they fit."
12
+ s.license = "MIT license (MIT)"
13
+ s.platform = Gem::Platform::RUBY
14
+ s.require_paths = ['lib']
15
+ s.files = Dir.glob("{lib,test}/**/*") + ['LICENSE.txt', 'README.md', '.yardopts', __FILE__]
16
+ s.has_rdoc = 'yard'
15
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neatjson
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin Kistner