harvesting 0.1.0 → 0.2.0
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/Dockerfile +6 -0
- data/README.md +16 -0
- data/RELEASE_NOTES.md +20 -0
- data/docker-compose.yml +10 -0
- data/lib/harvesting/client.rb +0 -1
- data/lib/harvesting/models/time_entry.rb +4 -0
- data/lib/harvesting/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1673fee5f8b50a00750256df7dea9b8143b4afbead80fbdf431cd2ecd19c6a1c
|
4
|
+
data.tar.gz: 5cb711e920654119f73ade9d2a9cc32a71ff869630b9a6d2ee0f48003cd743b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36d93fb5fdea77d42429d5e9116a12409e480746a261ce6f615987fa2c47b04e13f95a160eebcdea0314df78dd937b9353d8bafb21d8f44c8e64fa3f72928913
|
7
|
+
data.tar.gz: 3ba6fa74a9e549fb2bfb49f4cbde3e6b7c46fcb30564dbe9d0da14d1b0f03e8bd14e1f018b43c0667888f42b82c99ea89fb78da91c647039e9b5e616fe7c3486
|
data/Dockerfile
ADDED
data/README.md
CHANGED
@@ -18,6 +18,10 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
$ gem install harvesting
|
20
20
|
|
21
|
+
## Documentation
|
22
|
+
|
23
|
+
The API is documented [here](https://www.rubydoc.info/github/ombulabs/harvesting)
|
24
|
+
|
21
25
|
## Usage
|
22
26
|
|
23
27
|
In order to start using this gem you will need your personal token and an
|
@@ -92,12 +96,24 @@ this:
|
|
92
96
|
|
93
97
|
There are many things to be developed for this gem. For now they are tracked here: [TODO.md](https://github.com/ombulabs/harvesting/blob/master/TODO.md)
|
94
98
|
|
99
|
+
## Releases
|
100
|
+
|
101
|
+
You can find more info [here](RELEASE_NOTES.md)
|
102
|
+
|
95
103
|
## Development
|
96
104
|
|
105
|
+
### Without Docker
|
106
|
+
|
97
107
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
98
108
|
|
99
109
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
100
110
|
|
111
|
+
### With Docker
|
112
|
+
|
113
|
+
This setup allows you to create a completely isolated development environment for working on this gem. The version of ruby used for development and the gems that it depends on will remain inside the container.
|
114
|
+
|
115
|
+
After checking out the repo, run `docker-compose build` to create the `gem` container. Running `docker-compose run gem bash` will get you a bash session inside the container. From there, you can follow the instructions in the "Without Docker" section above.
|
116
|
+
|
101
117
|
## Contributing
|
102
118
|
|
103
119
|
Bug reports and pull requests are welcome on GitHub at https://github.com/ombulabs/harvesting. 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.
|
data/RELEASE_NOTES.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# RELEASE NOTES
|
2
|
+
|
3
|
+
## Version 0.1.0 - Sep 04, 2018
|
4
|
+
|
5
|
+
**Notes**
|
6
|
+
|
7
|
+
- Initial release
|
8
|
+
|
9
|
+
### Version 0.2.0 - Oct 18, 2018
|
10
|
+
|
11
|
+
**Notes**
|
12
|
+
|
13
|
+
- More documentation in README.md
|
14
|
+
- Adds ability to access user associated with time entries: https://github.com/ombulabs/harvesting/pull/3
|
15
|
+
- Adds support for Docker for development: https://github.com/ombulabs/harvesting/pull/1
|
16
|
+
|
17
|
+
**Bug Fixes**
|
18
|
+
|
19
|
+
- Fixes issues with specs: https://github.com/ombulabs/harvesting/pull/2
|
20
|
+
- Fixed https://github.com/ombulabs/harvesting/issues/6 with https://github.com/ombulabs/harvesting/pull/7
|
data/docker-compose.yml
ADDED
data/lib/harvesting/client.rb
CHANGED
data/lib/harvesting/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: harvesting
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ernesto Tagwerker
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: http
|
@@ -162,15 +162,18 @@ files:
|
|
162
162
|
- ".gitignore"
|
163
163
|
- ".travis.yml"
|
164
164
|
- CODE_OF_CONDUCT.md
|
165
|
+
- Dockerfile
|
165
166
|
- Gemfile
|
166
167
|
- Gemfile.lock
|
167
168
|
- Guardfile
|
168
169
|
- LICENSE.txt
|
169
170
|
- README.md
|
171
|
+
- RELEASE_NOTES.md
|
170
172
|
- Rakefile
|
171
173
|
- TODO.md
|
172
174
|
- bin/console
|
173
175
|
- bin/setup
|
176
|
+
- docker-compose.yml
|
174
177
|
- harvesting.gemspec
|
175
178
|
- lib/harvesting.rb
|
176
179
|
- lib/harvesting/client.rb
|