Sha256: ab631d6d3cbdad4fd6ec185bb06fc535bbe041c02a5b8f232643f7484d85adda

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 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 = '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.add_runtime_dependency 'nokogiri', '~>1.4.3.0'
  spec.add_development_dependency 'mocha'
  spec.add_development_dependency 'shoulda'
  spec.add_development_dependency 'activesupport'
  spec.add_development_dependency 'rake'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rets4r-1.1.18 rets4r.gemspec