myfinance 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a9cebea149d86f553ce53e94c2829aeae2ac674f
4
- data.tar.gz: c1041c26c68b1683404f4ba7d313c07831d79246
3
+ metadata.gz: 63cd8fdeb1a3544c1b83b7ef0e6fcbfb327ad653
4
+ data.tar.gz: 16823351a31b55b729ebe198e7fcfa964fd4d2f0
5
5
  SHA512:
6
- metadata.gz: cdb912ee4f3b5e2ed2dc6d1a233271e2dcdde6e351d99baa3975fd68f845455c44cdd727486c9d97fafb31f75757472229662a36874bba8f4051c19932537ca8
7
- data.tar.gz: 8a6178bec51152e7f8d6e41e2aaf2bb2c798c59906f26c678bb536304e2395a96b53c3188138c9ee489d65befd825503bfec5018d3d0d3f8e93b9fca5e243dac
6
+ metadata.gz: b01cd38702ddb2ce63730244b1381641b8cbcaf5b6e5694baf5912f19056c21db3a221a25edee48e05dac2395533ea081563d00033672d481de4cb6fd2d1b921
7
+ data.tar.gz: a963cccfe0eb8c582accca87e810b049d4644f67ed24e8728df4c18a619364031112f8dee9744e22da458af3511303a12884d6aa430d28682c3bb2f82c2c3035
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # Changelog
2
+ ## v1.3.1
3
+ ### Fixes
4
+ - Fix lib require to be relatively
5
+
2
6
  ## v1.3.0
3
7
  ### New Endpoints
4
8
  - Add endpoints for `Sale`, `SaleAccount` and `SaleRule`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- myfinance (1.3.0)
4
+ myfinance (1.3.1)
5
5
  mime-types (~> 2.99)
6
6
  multi_json (~> 1.11)
7
7
  require_all (~> 1.4.0)
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
- 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. 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.
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
@@ -3,7 +3,7 @@ require "multi_json"
3
3
  require "mime/types"
4
4
  require "require_all"
5
5
 
6
- require_all "lib/myfinance"
6
+ require_rel "myfinance"
7
7
 
8
8
  module Myfinance
9
9
  def self.configuration
@@ -1,3 +1,3 @@
1
1
  module Myfinance
2
- VERSION = "1.3.0".freeze
2
+ VERSION = "1.3.1".freeze
3
3
  end
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.0
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-12 00:00:00.000000000 Z
14
+ date: 2017-06-19 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: typhoeus