-
Notifications
You must be signed in to change notification settings - Fork 8
/
greenbutton.gemspec
19 lines (17 loc) · 1 KB
/
greenbutton.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = 'greenbutton'
s.version = '0.0.2'
s.date = '2014-03-17'
s.summary = "Ruby parser for the GreenButton data standard."
s.description = "This parser programmatically creates a Ruby object from a GreenButton XML data file, using the Nokogiri XML parsing library. See https://collaborate.nist.gov/twiki-sggrid/bin/view/SmartGrid/GreenButtonSDK for more information on Green Button. It is under active development and participation is encouraged. It is not yet stable."
s.authors = ["Charles Worthington", "Eric Hulburd"]
s.email = ['c.e.worthington@gmail.com','eric@arbol.org']
s.files = `git ls-files`.split("\n")
s.homepage = 'https://github.com/cew821/greenbutton'
s.license = 'MIT'
s.add_dependency "nokogiri", "~>1.6"
s.add_development_dependency "bundler", "~>1.5"
s.add_development_dependency "rspec", "~>2.14"
s.add_development_dependency "pry", '~> 0.9.12.6'
s.test_files = Dir.glob('spec/*_spec.rb')
end