-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathneatjson.gemspec
17 lines (17 loc) · 929 Bytes
/
neatjson.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# encoding: UTF-8
require 'date'
Gem::Specification.new do |s|
s.name = "neatjson"
s.version = "0.10.5"
s.date = Date.today.iso8601
s.authors = ["Gavin Kistner"]
s.email = "[email protected]"
s.homepage = "http://github.com/Phrogz/NeatJSON"
s.summary = "Pretty, powerful, flexible JSON generation."
s.description = "Generate JSON strings from Ruby objects with flexible formatting options. Key features: keep arrays and objects on a single line when they fit; format floats to specific precision; sort and align object keys; adjust whitespace padding of arrays and objects, inside and around commas and colons. JavaScript version included."
s.license = "MIT"
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.files = Dir.glob("{lib,test,html}/**/*") + ['LICENSE.txt', 'README.md', '.yardopts', __FILE__]
s.has_rdoc = 'yard'
end