myfinance 1.3.0 → 1.3.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/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +11 -1
- data/lib/myfinance.rb +1 -1
- data/lib/myfinance/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63cd8fdeb1a3544c1b83b7ef0e6fcbfb327ad653
|
|
4
|
+
data.tar.gz: 16823351a31b55b729ebe198e7fcfa964fd4d2f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b01cd38702ddb2ce63730244b1381641b8cbcaf5b6e5694baf5912f19056c21db3a221a25edee48e05dac2395533ea081563d00033672d481de4cb6fd2d1b921
|
|
7
|
+
data.tar.gz: a963cccfe0eb8c582accca87e810b049d4644f67ed24e8728df4c18a619364031112f8dee9744e22da458af3511303a12884d6aa430d28682c3bb2f82c2c3035
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1259,7 +1259,17 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
1259
1259
|
|
|
1260
1260
|
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
1261
1261
|
|
|
1262
|
-
|
|
1262
|
+
## Release
|
|
1263
|
+
|
|
1264
|
+
To release a new version, update the version number in `lib/myfinance/version.rb`, run `bundle install` and commit & push the changes to the repository.
|
|
1265
|
+
|
|
1266
|
+
If this is your first time publishing a RubyGem in your local device, you will have to download your credentials. To do this, follow the instructions in your [profile page in RubyGems](https://rubygems.org/profile/edit) or just type the following in your command line, replacing `$username` with your RubyGems username.
|
|
1267
|
+
|
|
1268
|
+
```bash
|
|
1269
|
+
$ curl -u $username https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials; chmod 0600 ~/.gem/credentials
|
|
1270
|
+
```
|
|
1271
|
+
|
|
1272
|
+
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). Make sure you have publishing rights for the gem on RubyGems beforehand, though.
|
|
1263
1273
|
|
|
1264
1274
|
After publishing the new version, add a comment to each pull request that was included in this release like this:
|
|
1265
1275
|
|
data/lib/myfinance.rb
CHANGED
data/lib/myfinance/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: myfinance
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo Hertz
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2017-06-
|
|
14
|
+
date: 2017-06-19 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: typhoeus
|