forked from agworld/saasu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaasu.gemspec
More file actions
96 lines (91 loc) · 3.29 KB
/
saasu.gemspec
File metadata and controls
96 lines (91 loc) · 3.29 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "saasu"
s.version = "0.0.15"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kieran Johnson, Chris Kruger"]
s.date = "2012-07-17"
s.description = "Expanded Fork of Ruby wrapper for the Saasu api. Originally written by Keiran Johnson, it has had features added to it in order to suit the needs of Agworld Pty Ltd by Chris Kruger"
s.email = "hello@invisiblelines.com"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
".rvmrc",
"Gemfile",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"lib/saasu.rb",
"lib/saasu/base.rb",
"lib/saasu/contact.rb",
"lib/saasu/contact_list_item.rb",
"lib/saasu/contact_response.rb",
"lib/saasu/delete_result.rb",
"lib/saasu/entity.rb",
"lib/saasu/error_info.rb",
"lib/saasu/insert_inventory_item_result.rb",
"lib/saasu/insert_invoice_payement_result.rb",
"lib/saasu/insert_invoice_result.rb",
"lib/saasu/insert_result.rb",
"lib/saasu/inventory_item.rb",
"lib/saasu/invoice.rb",
"lib/saasu/invoice_list_item.rb",
"lib/saasu/invoice_payment.rb",
"lib/saasu/invoice_payment_item.rb",
"lib/saasu/invoice_payment_list_item.rb",
"lib/saasu/item_invoice_item.rb",
"lib/saasu/postal_address.rb",
"lib/saasu/quick_payment.rb",
"lib/saasu/service_invoice_item.rb",
"lib/saasu/trading_terms.rb",
"lib/saasu/transaction.rb",
"lib/saasu/transaction_category.rb",
"lib/saasu/update_inventory_item_result.rb",
"lib/saasu/update_result.rb",
"saasu.gemspec",
"spec/base_spec.rb",
"spec/invoice_item_spec.rb",
"spec/invoice_response_spec.rb",
"spec/mocks/contact_list_item.xml",
"spec/mocks/invoice_item.xml",
"spec/mocks/invoice_list_item.xml",
"spec/mocks/invoice_response.xml",
"spec/spec.opts",
"spec/spec_helper.rb"
]
s.homepage = "http://github.com/agworld/saasu"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.10"
s.summary = "Expanded Fork of Ruby wrapper for the Saasu api"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.2"])
s.add_development_dependency(%q<bundler>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<yard>, [">= 0"])
else
s.add_dependency(%q<nokogiri>, [">= 0"])
s.add_dependency(%q<activesupport>, [">= 2.3.2"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
end
else
s.add_dependency(%q<nokogiri>, [">= 0"])
s.add_dependency(%q<activesupport>, [">= 2.3.2"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
end
end