quilted-harvested 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -5,6 +5,7 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "quilted-harvested"
8
+ gem.version = "0.3.2"
8
9
  gem.summary = %Q{A Ruby Wrapper for the Harvest API http://www.getharvest.com/}
9
10
  gem.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)}
10
11
  gem.email = "michelle@quilted.coop"
data/harvested.gemspec CHANGED
@@ -8,10 +8,10 @@ Gem::Specification.new do |s|
8
8
  s.version = "0.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Zach Moazeni, Michelle Moon Lee (updated)"]
12
- s.date = %q{2010-10-20}
11
+ s.authors = ["Zach Moazeni"]
12
+ s.date = %q{2010-10-14}
13
13
  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)}
14
- s.email = %q{michelle@quilted.coop}
14
+ s.email = %q{zach.moazeni@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "README.md"
17
17
  ]
@@ -105,7 +105,7 @@ Gem::Specification.new do |s|
105
105
  "spec/spec.default.opts",
106
106
  "spec/spec_helper.rb"
107
107
  ]
108
- s.homepage = %q{http://github.com/quilted/harvested}
108
+ s.homepage = %q{http://github.com/zmoazeni/harvested}
109
109
  s.rdoc_options = ["--charset=UTF-8"]
110
110
  s.require_paths = ["lib"]
111
111
  s.rubygems_version = %q{1.3.7}
@@ -16,7 +16,7 @@ require 'harvest/base'
16
16
  %w(base account clients contacts projects tasks users task_assignments user_assignments expense_categories expenses time reports).each {|a| require "harvest/api/#{a}"}
17
17
 
18
18
  module Harvest
19
- VERSION = "0.3.1".freeze
19
+ VERSION = "0.3.2".freeze
20
20
 
21
21
  class << self
22
22
 
@@ -0,0 +1,160 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{quilted-harvested}
8
+ s.version = "0.3.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Zach Moazeni, Michelle Moon Lee (updated)"]
12
+ s.date = %q{2010-10-20}
13
+ 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)}
14
+ s.email = %q{michelle@quilted.coop}
15
+ s.extra_rdoc_files = [
16
+ "README.md"
17
+ ]
18
+ s.files = [
19
+ ".document",
20
+ ".gitignore",
21
+ "HISTORY",
22
+ "MIT-LICENSE",
23
+ "README.md",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "examples/basics.rb",
27
+ "examples/clear_account.rb",
28
+ "examples/task_assignments.rb",
29
+ "examples/user_assignments.rb",
30
+ "features/account.feature",
31
+ "features/client_contacts.feature",
32
+ "features/clients.feature",
33
+ "features/errors.feature",
34
+ "features/expense_categories.feature",
35
+ "features/expenses.feature",
36
+ "features/hardy_client.feature",
37
+ "features/projects.feature",
38
+ "features/reporting.feature",
39
+ "features/step_definitions/account_steps.rb",
40
+ "features/step_definitions/assignment_steps.rb",
41
+ "features/step_definitions/contact_steps.rb",
42
+ "features/step_definitions/debug_steps.rb",
43
+ "features/step_definitions/error_steps.rb",
44
+ "features/step_definitions/expenses_steps.rb",
45
+ "features/step_definitions/harvest_steps.rb",
46
+ "features/step_definitions/model_steps.rb",
47
+ "features/step_definitions/people_steps.rb",
48
+ "features/step_definitions/report_steps.rb",
49
+ "features/step_definitions/time_entry_steps.rb",
50
+ "features/support/env.rb",
51
+ "features/support/error_helpers.rb",
52
+ "features/support/fixtures/empty_clients.xml",
53
+ "features/support/fixtures/over_limit.xml",
54
+ "features/support/fixtures/receipt.png",
55
+ "features/support/fixtures/under_limit.xml",
56
+ "features/support/harvest_credentials.example.yml",
57
+ "features/support/harvest_helpers.rb",
58
+ "features/support/inflections.rb",
59
+ "features/task_assignment.feature",
60
+ "features/tasks.feature",
61
+ "features/time_tracking.feature",
62
+ "features/user_assignments.feature",
63
+ "features/users.feature",
64
+ "harvested.gemspec",
65
+ "lib/harvest/api/account.rb",
66
+ "lib/harvest/api/base.rb",
67
+ "lib/harvest/api/clients.rb",
68
+ "lib/harvest/api/contacts.rb",
69
+ "lib/harvest/api/expense_categories.rb",
70
+ "lib/harvest/api/expenses.rb",
71
+ "lib/harvest/api/projects.rb",
72
+ "lib/harvest/api/reports.rb",
73
+ "lib/harvest/api/task_assignments.rb",
74
+ "lib/harvest/api/tasks.rb",
75
+ "lib/harvest/api/time.rb",
76
+ "lib/harvest/api/user_assignments.rb",
77
+ "lib/harvest/api/users.rb",
78
+ "lib/harvest/base.rb",
79
+ "lib/harvest/base_model.rb",
80
+ "lib/harvest/behavior/activatable.rb",
81
+ "lib/harvest/behavior/crud.rb",
82
+ "lib/harvest/client.rb",
83
+ "lib/harvest/contact.rb",
84
+ "lib/harvest/credentials.rb",
85
+ "lib/harvest/errors.rb",
86
+ "lib/harvest/expense.rb",
87
+ "lib/harvest/expense_category.rb",
88
+ "lib/harvest/hardy_client.rb",
89
+ "lib/harvest/project.rb",
90
+ "lib/harvest/rate_limit_status.rb",
91
+ "lib/harvest/task.rb",
92
+ "lib/harvest/task_assignment.rb",
93
+ "lib/harvest/time_entry.rb",
94
+ "lib/harvest/timezones.rb",
95
+ "lib/harvest/user.rb",
96
+ "lib/harvest/user_assignment.rb",
97
+ "lib/quilted-harvested.rb",
98
+ "quilted-harvested.gemspec",
99
+ "spec/harvest/base_spec.rb",
100
+ "spec/harvest/credentials_spec.rb",
101
+ "spec/harvest/expense_spec.rb",
102
+ "spec/harvest/task_assignment_spec.rb",
103
+ "spec/harvest/time_entry_spec.rb",
104
+ "spec/harvest/user_assignment_spec.rb",
105
+ "spec/harvest/user_spec.rb",
106
+ "spec/spec.default.opts",
107
+ "spec/spec_helper.rb"
108
+ ]
109
+ s.homepage = %q{http://github.com/quilted/harvested}
110
+ s.rdoc_options = ["--charset=UTF-8"]
111
+ s.require_paths = ["lib"]
112
+ s.rubygems_version = %q{1.3.7}
113
+ s.summary = %q{A Ruby Wrapper for the Harvest API http://www.getharvest.com/}
114
+ s.test_files = [
115
+ "spec/harvest/base_spec.rb",
116
+ "spec/harvest/credentials_spec.rb",
117
+ "spec/harvest/expense_spec.rb",
118
+ "spec/harvest/task_assignment_spec.rb",
119
+ "spec/harvest/time_entry_spec.rb",
120
+ "spec/harvest/user_assignment_spec.rb",
121
+ "spec/harvest/user_spec.rb",
122
+ "spec/spec_helper.rb",
123
+ "examples/basics.rb",
124
+ "examples/clear_account.rb",
125
+ "examples/task_assignments.rb",
126
+ "examples/user_assignments.rb"
127
+ ]
128
+
129
+ if s.respond_to? :specification_version then
130
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
131
+ s.specification_version = 3
132
+
133
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
134
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
135
+ s.add_development_dependency(%q<cucumber>, [">= 0"])
136
+ s.add_development_dependency(%q<ruby-debug>, [">= 0"])
137
+ s.add_development_dependency(%q<fakeweb>, [">= 0"])
138
+ s.add_runtime_dependency(%q<httparty>, [">= 0"])
139
+ s.add_runtime_dependency(%q<happymapper>, [">= 0"])
140
+ s.add_runtime_dependency(%q<builder>, [">= 0"])
141
+ else
142
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
143
+ s.add_dependency(%q<cucumber>, [">= 0"])
144
+ s.add_dependency(%q<ruby-debug>, [">= 0"])
145
+ s.add_dependency(%q<fakeweb>, [">= 0"])
146
+ s.add_dependency(%q<httparty>, [">= 0"])
147
+ s.add_dependency(%q<happymapper>, [">= 0"])
148
+ s.add_dependency(%q<builder>, [">= 0"])
149
+ end
150
+ else
151
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
152
+ s.add_dependency(%q<cucumber>, [">= 0"])
153
+ s.add_dependency(%q<ruby-debug>, [">= 0"])
154
+ s.add_dependency(%q<fakeweb>, [">= 0"])
155
+ s.add_dependency(%q<httparty>, [">= 0"])
156
+ s.add_dependency(%q<happymapper>, [">= 0"])
157
+ s.add_dependency(%q<builder>, [">= 0"])
158
+ end
159
+ end
160
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quilted-harvested
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 1
10
- version: 0.3.1
9
+ - 2
10
+ version: 0.3.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Zach Moazeni, Michelle Moon Lee (updated)
@@ -205,7 +205,8 @@ files:
205
205
  - lib/harvest/timezones.rb
206
206
  - lib/harvest/user.rb
207
207
  - lib/harvest/user_assignment.rb
208
- - lib/harvested.rb
208
+ - lib/quilted-harvested.rb
209
+ - quilted-harvested.gemspec
209
210
  - spec/harvest/base_spec.rb
210
211
  - spec/harvest/credentials_spec.rb
211
212
  - spec/harvest/expense_spec.rb