forked from estately/rets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
28 lines (21 loc) · 656 Bytes
/
Rakefile
File metadata and controls
28 lines (21 loc) · 656 Bytes
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
require 'rubygems'
require 'hoe'
require 'rake/testtask'
Hoe.plugin :git, :doofus
Hoe.plugin :travis
Hoe.plugin :gemspec
Hoe.spec 'rets' do
developer 'Estately, Inc. Open Source', 'opensource@estately.com'
extra_deps << [ "httpclient", "~> 2.6.0" ]
extra_deps << [ "http-cookie", "~> 1.0.0" ]
extra_deps << [ "nokogiri", "~> 1.5" ]
extra_dev_deps << [ "mocha", "~> 0.11" ]
extra_dev_deps << [ "vcr", "~> 2.2" ]
extra_dev_deps << [ "webmock", "~> 1.8" ]
### Use markdown for changelog and readme
self.history_file = 'CHANGELOG.md'
self.readme_file = 'README.md'
end
Rake::TestTask.new do |t|
t.pattern = "test/test_*.rb"
end