forked from vesess/curdbee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
curdbee.gemspec
95 lines (90 loc) · 2.96 KB
/
curdbee.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
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
# 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 = %q{curdbee}
s.version = "0.0.10"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Lakshan Perera"]
s.date = %q{2012-10-09}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
"curdbee.gemspec",
"examples/create_invoice_for_new_client.rb",
"examples/list_invoices.rb",
"lib/curdbee.rb",
"lib/curdbee/base.rb",
"lib/curdbee/client.rb",
"lib/curdbee/config.rb",
"lib/curdbee/error.rb",
"lib/curdbee/estimate.rb",
"lib/curdbee/invoice.rb",
"lib/curdbee/invoiceable.rb",
"lib/curdbee/item.rb",
"lib/curdbee/parser.rb",
"lib/curdbee/payment.rb",
"lib/curdbee/recurring_profile.rb",
"spec/client_spec.rb",
"spec/estimate_spec.rb",
"spec/fixtures/client.json",
"spec/fixtures/clients.json",
"spec/fixtures/customers.json",
"spec/fixtures/estimate.json",
"spec/fixtures/estimates.json",
"spec/fixtures/invoice.json",
"spec/fixtures/invoices.json",
"spec/fixtures/item.json",
"spec/fixtures/items.json",
"spec/fixtures/new_client.json",
"spec/fixtures/new_estimate.json",
"spec/fixtures/new_invoice.json",
"spec/fixtures/new_item.json",
"spec/fixtures/new_payment.json",
"spec/fixtures/new_recurring_profile.json",
"spec/fixtures/payment.json",
"spec/fixtures/payments.json",
"spec/fixtures/recurring_profile.json",
"spec/fixtures/recurring_profiles.json",
"spec/invoice_spec.rb",
"spec/item_spec.rb",
"spec/payment_spec.rb",
"spec/recurring_profile_spec.rb",
"spec/spec_helper.rb",
"spec/support/fakeweb_stubs.rb"
]
s.homepage = %q{http://github.com/vesess/curdbee}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{Ruby wrapper for the CurdBee API}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<httparty>, ["~> 0.9.0"])
s.add_runtime_dependency(%q<hashie>, ["~> 0.1.8"])
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_runtime_dependency(%q<crack>, [">= 0"])
else
s.add_dependency(%q<httparty>, ["~> 0.9.0"])
s.add_dependency(%q<hashie>, ["~> 0.1.8"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<crack>, [">= 0"])
end
else
s.add_dependency(%q<httparty>, ["~> 0.9.0"])
s.add_dependency(%q<hashie>, ["~> 0.1.8"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<crack>, [">= 0"])
end
end