neatjson 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/neatjson.gemspec +13 -11
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53e8fd630d625edc34d2af45cb65d234e054b4e2
|
4
|
+
data.tar.gz: 967f1fe69f119a8b5d49e1464863ceea4d659273
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
5
|
-
s.version
|
6
|
-
s.date
|
7
|
-
s.authors
|
8
|
-
s.email
|
9
|
-
s.homepage
|
10
|
-
s.summary
|
11
|
-
s.description
|
12
|
-
s.license
|
13
|
-
|
14
|
-
|
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
|