-
Notifications
You must be signed in to change notification settings - Fork 12
/
trademe.gemspec
53 lines (47 loc) · 1.56 KB
/
trademe.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = '1.3.6'
s.name = "trademe"
s.version = '0.2.0'
s.platform = Gem::Platform::RUBY
s.authors = ["Oliver Clarke"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/clarketus/trademe"
s.summary = "Ruby wrapper for the trademe.co.nz public API"
s.description = "Ruby wrapper for the trademe.co.nz public API"
s.require_paths = %w[lib]
s.rdoc_options = ["--charset=UTF-8"]
s.add_dependency "oauth"
s.add_dependency "yajl-ruby"
s.add_development_dependency('test-unit')
s.add_development_dependency("shoulda")
s.add_development_dependency("mocha")
# = MANIFEST =
s.files = %w[
CHANGELOG
Gemfile
Gemfile.lock
MIT-LICENSE
README.rdoc
Rakefile
init.rb
lib/trademe.rb
lib/trademe/authentication.rb
lib/trademe/gateway.rb
lib/trademe/my_trademe.rb
test/mocks/bad_response.json
test/mocks/listing_search.json
test/mocks/listings/get.error.json
test/mocks/listings/get.json
test/test.rb
test/trademe/authentication_test.rb
test/trademe/gateway_test.rb
test/trademe/my_trademe_test.rb
trademe.gemspec
]
# = MANIFEST =
## Test files will be grabbed from the file list. Make sure the path glob
## matches what you actually use.
s.test_files = s.files.select { |path| path =~ /\/*_test\.rb/ }
end