forked from josephholsten/rets4r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrets4r.gemspec
29 lines (26 loc) · 1.64 KB
/
rets4r.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
25
26
27
28
lib = File.expand_path("../lib/rets4r.rb", __FILE__)
version = File.read(lib)[/^\s*VERSION\s*=\s*(['"])(\d\.\d\.\d+)\1/, 2]
Gem::Specification.new do |spec|
spec.name = 'rets4r'
spec.authors = ["Scott Patterson", "John Wulff", "bgetting", "Jacob Basham", "Joseph Holsten", "Braxton Beyer"]
spec.email = ["scott.patterson@digitalaun.com", "john@johnwulff.com", "brian@terra-firma-design.com", "jacob@paperpigeons.net", "joseph@josephholsten.com", "braxton@braxtonbeyer.com"]
spec.homepage = 'http://rets4r.rubyforge.org/'
spec.rubyforge_project = 'rets4r'
spec.description = %q{RETS4R is a native Ruby interface to the RETS (Real Estate Transaction Standard). It currently is built for the 1.5 specification, but support for 1.7 and 2.0 are planned. It does not currently implement all of the specification, but the most commonly used portions. Specifically, there is no support for Update transactions.}
spec.extra_rdoc_files = %w[CHANGELOG CONTRIBUTORS LICENSE MANIFEST NEWS README.rdoc TODO]
spec.rdoc_options << "--charset=UTF-8" <<
"--main" << "README.rdoc"
spec.version = version
spec.summary = spec.description.split(/\.\s+/).first
spec.files = File.read("MANIFEST").split(/\r?\n\r?/)
spec.add_runtime_dependency 'nokogiri', '>= 1.3.2'
spec.add_runtime_dependency 'thor'
spec.add_development_dependency 'aruba'
spec.add_development_dependency 'activesupport'
spec.add_development_dependency 'cucumber'
spec.add_development_dependency 'i18n'
spec.add_development_dependency 'mocha'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rdoc'
spec.add_development_dependency 'shoulda'
end