rescuetime 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +10 -0
- data/CODE_OF_CONDUCT.md +67 -6
- data/README.md +36 -3
- data/lib/rescuetime/version.rb +1 -1
- data/rescuetime.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c0cd7ef7eff210f3493202052af6ddd012193fa
|
4
|
+
data.tar.gz: 46c35796d091b5c5ef3cff730e610e284f06100a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97ea466b16bba337169c2eb300d408a3fbd99e5b7ab757a8906d8022956f72acbb0251410f9b07db6a17e3849b55e6cf7bce4329a9637ac466d8cc111a379a91
|
7
|
+
data.tar.gz: a2de1d549e590de16428623e8366b3e8f1e08b45e6684f979d9bbb724d9320b7fdf6d31af94ff9b3aabc8323bf2e7389c852bc0bc09b0b0fa3ffc45011a2ea7f
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -12,6 +12,16 @@ See also
|
|
12
12
|
|
13
13
|
---
|
14
14
|
|
15
|
+
## [v1.0.1] - 2019-02-16
|
16
|
+
|
17
|
+
Mention max ruby version in gemspec
|
18
|
+
|
19
|
+
### Updates
|
20
|
+
|
21
|
+
No code updates. It looks like some functionality breaks under ruby 2.4+, so
|
22
|
+
this change updates the gemspec to reflect this. A future update will probably
|
23
|
+
resolve the bug.
|
24
|
+
|
15
25
|
## [v1.0.0] - 2016-08-26
|
16
26
|
|
17
27
|
Bump Version and Misc Updates
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -1,13 +1,74 @@
|
|
1
1
|
# Contributor Code of Conduct
|
2
2
|
|
3
|
-
|
3
|
+
## Our Pledge
|
4
4
|
|
5
|
-
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
6
11
|
|
7
|
-
|
12
|
+
## Our Standards
|
8
13
|
|
9
|
-
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
10
16
|
|
11
|
-
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
12
22
|
|
13
|
-
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the maintainer at lee@leesharma.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/README.md
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
rescuetime
|
2
2
|
==========
|
3
3
|
|
4
|
-
[](https://codeclimate.com/github/leesharma/rescuetime)
|
5
|
+
[](https://codeclimate.com/github/leesharma/rescuetime)
|
6
6
|
[](https://travis-ci.org/leesharma/rescuetime)
|
7
|
-
[](https://gemnasium.com/leesharma/rescuetime)
|
8
7
|
|
9
8
|
[](https://rubygems.org/gems/rescuetime)
|
10
9
|
[](https://github.com/leesharma/rescuetime/releases/)
|
@@ -27,6 +26,7 @@ For more information about RescueTime, visit [the RescueTime homepage](https://w
|
|
27
26
|
* [Rescuetime Exceptions](#rescuetime-exceptions)
|
28
27
|
* [Development](https://github.com/leesharma/rescuetime/wiki/Development) ([section](#development))
|
29
28
|
* [Contributing](CONTRIBUTING.md) ([section](#contributing))
|
29
|
+
* [TODO](#todo)
|
30
30
|
|
31
31
|
#### Useful Links
|
32
32
|
* [RDoc](http://www.rubydoc.info/gems/rescuetime)
|
@@ -301,3 +301,36 @@ See the [development page](https://github.com/leesharma/rescuetime/wiki/Developm
|
|
301
301
|
## Contributing
|
302
302
|
|
303
303
|
See the [contributing page](CONTRIBUTING.md).
|
304
|
+
|
305
|
+
### TODO
|
306
|
+
|
307
|
+
The eventual goal of this gem is full coverage of all Rescuetime APIs.
|
308
|
+
|
309
|
+
Associated issues from our issue tracker are linked when applicable. If you are interested in contributing, please feel free to work on any of these issues! If there is a feature you want that's not on the TODO list, open an issue and we can discuss it.
|
310
|
+
|
311
|
+
- [x] Minimum viable functionality (in [v0.1.0])
|
312
|
+
- [x] Add support for major query params in Data Analytic API (in [v0.2.0])
|
313
|
+
- [x] Lazy query evaluation and method chaining (in [v0.3.0], [v0.3.1], [v0.3.2], [v0.3.3])
|
314
|
+
- [x] Add custom report formatters (in [v0.4.0])
|
315
|
+
- [ ] Add full coverage of Data Analytics API
|
316
|
+
- [ ] Restrict results by group ([#14])
|
317
|
+
- [ ] Restrict results by person
|
318
|
+
- [ ] Add support for "Daily Summary API" ([#28])
|
319
|
+
- [ ] Add support for "Alerts Feed API"
|
320
|
+
- [ ] Add support for "Daily Highlights Feed API"
|
321
|
+
- [ ] Add support for "Daily Highlights POST API"
|
322
|
+
- [ ] Add OAuth2 support
|
323
|
+
|
324
|
+
For details about completed items, please see [the release page][releases].
|
325
|
+
|
326
|
+
[#14]: https://github.com/leesharma/rescuetime/issues/14
|
327
|
+
[#28]: https://github.com/leesharma/rescuetime/issues/28
|
328
|
+
|
329
|
+
[v0.1.0]:https://github.com/leesharma/rescuetime/releases/tag/v0.1.0
|
330
|
+
[v0.2.0]:https://github.com/leesharma/rescuetime/releases/tag/v0.2.0
|
331
|
+
[v0.3.0]:https://github.com/leesharma/rescuetime/releases/tag/v0.3.0
|
332
|
+
[v0.3.1]:https://github.com/leesharma/rescuetime/releases/tag/v0.3.1
|
333
|
+
[v0.3.2]:https://github.com/leesharma/rescuetime/releases/tag/v0.3.2
|
334
|
+
[v0.3.3]:https://github.com/leesharma/rescuetime/releases/tag/v0.3.3
|
335
|
+
[v0.4.0]:https://github.com/leesharma/rescuetime/releases/tag/v0.4.0
|
336
|
+
[releases]:https://github.com/leesharma/rescuetime/releases
|
data/lib/rescuetime/version.rb
CHANGED
data/rescuetime.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.bindir = 'bin'
|
21
21
|
spec.require_paths = ['lib']
|
22
22
|
|
23
|
-
spec.required_ruby_version = '>= 2.0.0'
|
23
|
+
spec.required_ruby_version = '>= 2.0.0', '< 2.4'
|
24
24
|
|
25
25
|
spec.add_development_dependency 'bundler'
|
26
26
|
spec.add_development_dependency 'rake', '~> 10.4', '>= 10.4.2'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rescuetime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lee Sharma
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -185,6 +185,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
185
185
|
- - ">="
|
186
186
|
- !ruby/object:Gem::Version
|
187
187
|
version: 2.0.0
|
188
|
+
- - "<"
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: '2.4'
|
188
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
189
192
|
requirements:
|
190
193
|
- - ">="
|
@@ -192,9 +195,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
195
|
version: '0'
|
193
196
|
requirements: []
|
194
197
|
rubyforge_project:
|
195
|
-
rubygems_version: 2.
|
198
|
+
rubygems_version: 2.6.8
|
196
199
|
signing_key:
|
197
200
|
specification_version: 4
|
198
201
|
summary: Ruby interface for RescueTime
|
199
202
|
test_files: []
|
200
|
-
has_rdoc:
|