forked from kennyma/health_graph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
health_graph.gemspec
107 lines (103 loc) · 4.11 KB
/
health_graph.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
# 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 = "health_graph"
s.version = "0.6.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kenny Ma"]
s.date = "2012-07-17"
s.description = "This is a wrapper for RunKeeper Health Graph RESTful API."
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = [
".document",
"Gemfile",
"LICENSE.txt",
"README.rdoc",
"Rakefile",
"VERSION",
"health_graph.gemspec",
"lib/health_graph.rb",
"lib/health_graph/api.rb",
"lib/health_graph/authentication.rb",
"lib/health_graph/configuration.rb",
"lib/health_graph/datetime.rb",
"lib/health_graph/model.rb",
"lib/health_graph/models/fitness_activities_feed.rb",
"lib/health_graph/models/fitness_activity.rb",
"lib/health_graph/models/fitness_activity_delete.rb",
"lib/health_graph/models/fitness_activity_summary.rb",
"lib/health_graph/models/fitness_activity_update.rb",
"lib/health_graph/models/new_fitness_activity.rb",
"lib/health_graph/models/profile.rb",
"lib/health_graph/models/settings.rb",
"lib/health_graph/models/sleep_feed.rb",
"lib/health_graph/models/strength_training_activities_feed.rb",
"lib/health_graph/models/strength_training_activity.rb",
"lib/health_graph/models/user.rb",
"lib/health_graph/models/weight_feed.rb",
"test/fixtures/background_activities_feed.json",
"test/fixtures/background_activity.json",
"test/fixtures/fitness_activities_feed/all.json",
"test/fixtures/fitness_activities_feed/page_0.json",
"test/fixtures/fitness_activities_feed/page_1.json",
"test/fixtures/fitness_activity.json",
"test/fixtures/new_fitness_activity_params.json",
"test/fixtures/profile_get.json",
"test/fixtures/records.json",
"test/fixtures/sleep_feed_get.json",
"test/fixtures/team_get_empty.json",
"test/fixtures/user_get.json",
"test/fixtures/weight_feed_get.json",
"test/fixtures/weight_get_empty.json",
"test/health_graph/test_fitness_activities_feed.rb",
"test/health_graph/test_new_fitness_activity.rb",
"test/health_graph/test_profile.rb",
"test/health_graph/test_sleep_feed.rb",
"test/health_graph/test_user.rb",
"test/health_graph/test_weight_feed.rb",
"test/helper.rb",
"test/test_health_graph.rb"
]
s.homepage = "http://github.com/kennyma/health_graph"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.13"
s.summary = "Ruby gem for RunKeeper Health Graph 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_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<simplecov>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_runtime_dependency(%q<oauth2>, [">= 0.5.2"])
s.add_runtime_dependency(%q<faraday>, [">= 0.7.4"])
s.add_runtime_dependency(%q<faraday_middleware>, [">= 0.7.8"])
s.add_runtime_dependency(%q<hashie>, [">= 1.2"])
s.add_runtime_dependency(%q<webmock>, [">= 1.7.6"])
else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<oauth2>, [">= 0.5.2"])
s.add_dependency(%q<faraday>, [">= 0.7.4"])
s.add_dependency(%q<faraday_middleware>, [">= 0.7.8"])
s.add_dependency(%q<hashie>, [">= 1.2"])
s.add_dependency(%q<webmock>, [">= 1.7.6"])
end
else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<oauth2>, [">= 0.5.2"])
s.add_dependency(%q<faraday>, [">= 0.7.4"])
s.add_dependency(%q<faraday_middleware>, [">= 0.7.8"])
s.add_dependency(%q<hashie>, [">= 1.2"])
s.add_dependency(%q<webmock>, [">= 1.7.6"])
end
end