toggl-jobcan 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -2
- data/lib/toggl/jobcan/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f483f4acaf5e1c71fc862cd0c972b96b6bcab779e5fa5337d2cb401e4281c64
|
4
|
+
data.tar.gz: 9d5bb360a386624b0f804eb6033d8e70228c7531cf4a5d10a65e2e6787f2986c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 980d306d2ce43065280b5e330a63002832845ad019f6c45c9d549983ad51397861aa124c696c01436b933843f423376943bb610a63c2dc6f9b654a3a8d6d9015
|
7
|
+
data.tar.gz: f944e61ca101b3d2e345aa56f4822e4311ffdd0e08cb138ab577662673d2aae764536e62e6511b8c4af5510ba0dc4e82ae9fd5e7cb4657ab2a19bd08ea03b12a
|
data/README.md
CHANGED
@@ -18,8 +18,21 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
$ gem install toggl-jobcan
|
20
20
|
|
21
|
+
## Configuration
|
22
|
+
|
23
|
+
Prepare `~/.toggl` including Toggl API token so that [Toggl::Worktime](https://github.com/limitusus/toggl-worktime) works.
|
24
|
+
|
25
|
+
Prepare `~/.jobcan` YAML file that includes:
|
26
|
+
|
27
|
+
```yaml
|
28
|
+
client_id: YOUR_CLIENT_ID
|
29
|
+
email: YOUR_EMAIL_ADDRESS
|
30
|
+
password: YOUR_PASSWORD
|
31
|
+
```
|
32
|
+
|
21
33
|
## Usage
|
22
34
|
|
35
|
+
|
23
36
|
Pass date strings in `%Y%m%d` format.
|
24
37
|
|
25
38
|
```console
|
@@ -40,7 +53,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
40
53
|
|
41
54
|
## Contributing
|
42
55
|
|
43
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
56
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/limitusus/toggl-jobcan. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
44
57
|
|
45
58
|
## License
|
46
59
|
|
@@ -48,4 +61,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
48
61
|
|
49
62
|
## Code of Conduct
|
50
63
|
|
51
|
-
Everyone interacting in the Toggl::Jobcan project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
64
|
+
Everyone interacting in the Toggl::Jobcan project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/limitusus/toggl-jobcan/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/toggl/jobcan/version.rb
CHANGED