-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcxml.gemspec
24 lines (20 loc) · 870 Bytes
/
cxml.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require File.expand_path('../lib/cxml/version', __FILE__)
Gem::Specification.new do |s|
s.name = "cxml"
s.version = CXML::VERSION
s.summary = "Ruby library to work with cXML protocol"
s.description = "Ruby library to work with cXML protocol"
s.homepage = "http://github.com/sosedoff/cxml"
s.authors = ["Dan Sosedoff"]
s.email = ["[email protected]"]
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 2.13'
s.add_development_dependency 'simplecov', '~> 0.7'
s.add_dependency 'nokogiri'
s.add_dependency 'xml-simple'
s.add_dependency 'hashr'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
s.require_paths = ["lib"]
end