fitbit_api 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/fitbit_api.gemspec +1 -6
- data/lib/fitbit_api/version.rb +1 -1
- metadata +3 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0f7cfa7bd01601218b28a91cfc320c5d2e116b5
|
4
|
+
data.tar.gz: 21808cc90a6c101e5deee4f2f2928f6e771ce20f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a03d7fcd126de4537b06a898643805d1c32f01222421d1944fdbce72244fe3399b9ec2dc3e727d6fd7bbbd87ecf11739122229c4b69dc7d426833015daee2df
|
7
|
+
data.tar.gz: d76d0351df16e25d0659a0c8422fa5bd5c06af0b1f0fe0406b4ce2d9b35a30046f0e5362393951fd9e7acae178fed40d629b160a483185c144698f43e032bdaf
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
0.8.1
|
2
|
+
-----
|
3
|
+
- Post install cleanup
|
4
|
+
|
5
|
+
0.8.0
|
6
|
+
-----
|
7
|
+
- Gem renamed from `fitbyte` to `fitbit_api`
|
8
|
+
- Make sure to change `Fitbyte::Client` to `FitbitAPI::Client` in your code, no other changes should be necessary.
|
9
|
+
|
1
10
|
0.7.1
|
2
11
|
-----
|
3
12
|
- Rename `#auth_page_link` to `#auth_url`
|
data/fitbit_api.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = FitbitAPI::VERSION
|
9
9
|
spec.authors = ['Zoran']
|
10
10
|
|
11
|
-
spec.summary = %q{A Ruby interface to the Fitbit API
|
11
|
+
spec.summary = %q{A Ruby interface to the Fitbit Web API.}
|
12
12
|
spec.homepage = FitbitAPI::REPO_URL
|
13
13
|
spec.license = 'MIT'
|
14
14
|
|
@@ -24,9 +24,4 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_development_dependency 'bundler', '~> 1.10'
|
25
25
|
spec.add_development_dependency 'rake', '~> 10.0'
|
26
26
|
spec.add_development_dependency 'rspec'
|
27
|
-
|
28
|
-
spec.post_install_message = %q{
|
29
|
-
The fitbit_api gem has been renamed to fitbit_api and will no longer be supported.
|
30
|
-
Please switch to using fitbit_api for all versions greater than 0.7.1.
|
31
|
-
}
|
32
27
|
end
|
data/lib/fitbit_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fitbit_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zoran
|
@@ -103,9 +103,7 @@ homepage: https://github.com/zokioki/fitbit_api
|
|
103
103
|
licenses:
|
104
104
|
- MIT
|
105
105
|
metadata: {}
|
106
|
-
post_install_message:
|
107
|
-
will no longer be supported.\n Please switch to using fitbit_api for all versions
|
108
|
-
greater than 0.7.1.\n "
|
106
|
+
post_install_message:
|
109
107
|
rdoc_options: []
|
110
108
|
require_paths:
|
111
109
|
- lib
|
@@ -124,5 +122,5 @@ rubyforge_project:
|
|
124
122
|
rubygems_version: 2.6.13
|
125
123
|
signing_key:
|
126
124
|
specification_version: 4
|
127
|
-
summary: A Ruby interface to the Fitbit API
|
125
|
+
summary: A Ruby interface to the Fitbit Web API.
|
128
126
|
test_files: []
|