forked from zmoazeni/harvested
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharvested.gemspec
147 lines (142 loc) · 5.24 KB
/
harvested.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# 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{harvested}
s.version = "0.4.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Zach Moazeni"]
s.date = %q{2011-08-04}
s.description = %q{Harvested wraps the Harvest API concisely without the use of Rails dependencies. More information about the Harvest API can be found on their website (http://www.getharvest.com/api). For support hit up the Mailing List (http://groups.google.com/group/harvested)}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"README.md",
"TODO"
]
s.files = [
".document",
"Gemfile",
"HISTORY",
"MIT-LICENSE",
"README.md",
"Rakefile",
"TODO",
"VERSION",
"examples/basics.rb",
"examples/clear_account.rb",
"examples/task_assignments.rb",
"examples/user_assignments.rb",
"harvested.gemspec",
"lib/ext/array.rb",
"lib/ext/date.rb",
"lib/ext/hash.rb",
"lib/ext/time.rb",
"lib/harvest/api/account.rb",
"lib/harvest/api/base.rb",
"lib/harvest/api/clients.rb",
"lib/harvest/api/contacts.rb",
"lib/harvest/api/expense_categories.rb",
"lib/harvest/api/expenses.rb",
"lib/harvest/api/invoice_categories.rb",
"lib/harvest/api/invoices.rb",
"lib/harvest/api/projects.rb",
"lib/harvest/api/reports.rb",
"lib/harvest/api/task_assignments.rb",
"lib/harvest/api/tasks.rb",
"lib/harvest/api/time.rb",
"lib/harvest/api/user_assignments.rb",
"lib/harvest/api/users.rb",
"lib/harvest/base.rb",
"lib/harvest/behavior/activatable.rb",
"lib/harvest/behavior/crud.rb",
"lib/harvest/client.rb",
"lib/harvest/contact.rb",
"lib/harvest/credentials.rb",
"lib/harvest/errors.rb",
"lib/harvest/expense.rb",
"lib/harvest/expense_category.rb",
"lib/harvest/hardy_client.rb",
"lib/harvest/invoice.rb",
"lib/harvest/invoice_category.rb",
"lib/harvest/line_item.rb",
"lib/harvest/model.rb",
"lib/harvest/project.rb",
"lib/harvest/rate_limit_status.rb",
"lib/harvest/task.rb",
"lib/harvest/task_assignment.rb",
"lib/harvest/time_entry.rb",
"lib/harvest/timezones.rb",
"lib/harvest/user.rb",
"lib/harvest/user_assignment.rb",
"lib/harvested.rb",
"spec/functional/account_spec.rb",
"spec/functional/clients_spec.rb",
"spec/functional/errors_spec.rb",
"spec/functional/expenses_spec.rb",
"spec/functional/hardy_client_spec.rb",
"spec/functional/invoice_spec.rb",
"spec/functional/project_spec.rb",
"spec/functional/reporting_spec.rb",
"spec/functional/tasks_spec.rb",
"spec/functional/time_tracking_spec.rb",
"spec/functional/users_spec.rb",
"spec/harvest/base_spec.rb",
"spec/harvest/credentials_spec.rb",
"spec/harvest/expense_category_spec.rb",
"spec/harvest/expense_spec.rb",
"spec/harvest/invoice_spec.rb",
"spec/harvest/project_spec.rb",
"spec/harvest/task_assignment_spec.rb",
"spec/harvest/task_spec.rb",
"spec/harvest/time_entry_spec.rb",
"spec/harvest/user_assignment_spec.rb",
"spec/harvest/user_spec.rb",
"spec/spec_helper.rb",
"spec/support/harvest_credentials.example.yml",
"spec/support/harvested_helpers.rb",
"spec/support/json_examples.rb",
"spec/test_rubies"
]
s.homepage = %q{http://github.com/zmoazeni/harvested}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{A Ruby Wrapper for the Harvest API http://www.getharvest.com/}
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<httparty>, [">= 0"])
s.add_runtime_dependency(%q<hashie>, ["~> 2"])
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_development_dependency(%q<rspec>, ["~> 2"])
s.add_development_dependency(%q<ruby-debug>, [">= 0"])
s.add_development_dependency(%q<ruby-debug19>, [">= 0"])
s.add_development_dependency(%q<jruby-openssl>, [">= 0"])
s.add_development_dependency(%q<webmock>, [">= 0"])
s.add_development_dependency(%q<vcr>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
else
s.add_dependency(%q<httparty>, [">= 0"])
s.add_dependency(%q<hashie>, ["~> 2"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<rspec>, ["~> 2"])
s.add_dependency(%q<ruby-debug>, [">= 0"])
s.add_dependency(%q<ruby-debug19>, [">= 0"])
s.add_dependency(%q<jruby-openssl>, [">= 0"])
s.add_dependency(%q<webmock>, [">= 0"])
s.add_dependency(%q<vcr>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
end
else
s.add_dependency(%q<httparty>, [">= 0"])
s.add_dependency(%q<hashie>, ["~> 2"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<rspec>, ["~> 2"])
s.add_dependency(%q<ruby-debug>, [">= 0"])
s.add_dependency(%q<ruby-debug19>, [">= 0"])
s.add_dependency(%q<jruby-openssl>, [">= 0"])
s.add_dependency(%q<webmock>, [">= 0"])
s.add_dependency(%q<vcr>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
end
end