Sha256: de4ea29330bd65b9c878eba8ce75488c6cddb0e93bd3f3b2bf6641df3e405127
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
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 = 'jschairb-rets4r' spec.authors = ["Scott Patterson", "John Wulff", "bgetting", "Jacob Basham", "Joseph Holsten"] spec.email = ["scott.patterson@digitalaun.com", "john@johnwulff.com", "brian@terra-firma-design.com", "jacob@paperpigeons.net", "joseph@josephholsten.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 RUBYS 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.test_files = spec.files.grep(/^test\/.*test_.*\.rb$/) spec.add_runtime_dependency 'nokogiri', '~>1.4.0' spec.add_development_dependency 'mocha' spec.add_development_dependency 'shoulda' spec.add_development_dependency 'activesupport' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jschairb-rets4r-1.1.18 | rets4r.gemspec |