-
Notifications
You must be signed in to change notification settings - Fork 7
/
tourets.gemspec
24 lines (21 loc) · 1022 Bytes
/
tourets.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/tourets/rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jeremy Woertink", "Justin Mitchell"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = "TouRETS is a rails gem used to interface with multiple RETS using the ruby-rets gem"
gem.summary = "Use RETS with a LOT less hassle"
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "tourets"
gem.require_paths = ["lib"]
gem.version = TouRETS::Rails::VERSION
gem.add_dependency('ruby-rets', '2.0.5')
gem.add_dependency('railties', '>= 3.1')
gem.add_development_dependency('rspec')
gem.add_development_dependency('vcr')
gem.add_development_dependency('webmock')
gem.add_development_dependency('rails', '>= 3.1')
end