git-harvest 0.1.3 → 0.1.4
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/Gemfile.lock +1 -1
- data/README.md +11 -15
- data/lib/harvest.rb +2 -0
- data/lib/harvest/vcs.rb +2 -0
- data/lib/harvest/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: 3764242c2178c6b5eb728fb47bec8d4611072d50f97df8e9dfc083829d4cd2d7
|
|
4
|
+
data.tar.gz: 4fabb211aa28171823b6795730c6e9cbf4c609815adc5474afb0cc1dbbf926a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e0bb74d158477a7e43fa6be085b6da4718c963c0d7c74fc96e06fe89c443f9868d2dfbef4e5b4307ef9bc79fca6a367ace17cdaa058e3c26b699f292b7fdb3a
|
|
7
|
+
data.tar.gz: bdc951ca3b0c22cad54bc2a7e84658bb65cc65328cba6da23637d024c9560783c8b7b3a90e48591779eb612182405927358f62a2e7bf29a20abb4d3b497334f4
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,28 +1,24 @@
|
|
|
1
1
|
# Harvest
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
Auto log GIT activity on Harvest.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'harvest'
|
|
13
|
-
```
|
|
7
|
+
$ gem install harvest
|
|
14
8
|
|
|
15
|
-
|
|
9
|
+
## Usage
|
|
16
10
|
|
|
17
|
-
|
|
11
|
+
1. Navigate to the project directory.
|
|
18
12
|
|
|
19
|
-
|
|
13
|
+
2. Initialize the harvest configuration by
|
|
20
14
|
|
|
21
|
-
|
|
15
|
+
```bash
|
|
16
|
+
harvest init
|
|
17
|
+
```
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
3. Enter all the prompts with correct credentials. Credential file is stored in `$ROOT/.harvest/config.json` file.
|
|
24
20
|
|
|
25
|
-
|
|
21
|
+
4. Now the gem can start tracking on Harvest. When you want to start tracking, simply run `harvest start`
|
|
26
22
|
|
|
27
23
|
## Development
|
|
28
24
|
|
|
@@ -32,7 +28,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
32
28
|
|
|
33
29
|
## Contributing
|
|
34
30
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
31
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/abhinavmsra/harvest. 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.
|
|
36
32
|
|
|
37
33
|
## License
|
|
38
34
|
|
data/lib/harvest.rb
CHANGED
data/lib/harvest/vcs.rb
CHANGED
data/lib/harvest/version.rb
CHANGED