cashbox 0.0.41 → 0.0.42
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 +2 -0
- data/lib/cashbox/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da0f59f018b9bc40bc4104c5c1691018c603f09c
|
|
4
|
+
data.tar.gz: 3a44c207c6d9c07b44ba1062a416cb0401445d99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c5424109a2c890d210a58fa21f3744d82ca244cd4f7725933dca9981666362f8a02968e278b2219b426c9c7fe90a6146acafcddac1b03d5f18c5eba6a5a01fb
|
|
7
|
+
data.tar.gz: bab548ecbdcbf10a165e159f8180503e0bf533814d332e6f0143e68cc603923ac31a55e5058c6965dde2df751b6a367a4f41996c0d7099b029ac8e7ba3b9415f
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -101,6 +101,8 @@ account.save
|
|
|
101
101
|
|
|
102
102
|
After checking out the repo, run `bundle install` to install dependencies. Then, run `bundle exec rake` to run the tests. You can also run `bundle console` for an interactive prompt that will allow you to experiment.
|
|
103
103
|
|
|
104
|
+
To push a new version of the Cashbox ruby gem, you will need to update the version file with the new version, run `bundle install` and be sure to also push the `Gemfile.lock` file up with your code changes to be merged to master. Then, run this command in your terminal to build the gemspec `gem build cashbox.gemspec`. Once the gemspec is built and your code has been merged to master, you can now push the new version to ruby gems by running this command in your terminal: `gem push cashbox-<version number of built gem>.gem` and replace the verbiage within the angle brackets with the new version number.
|
|
105
|
+
|
|
104
106
|
### Logging
|
|
105
107
|
|
|
106
108
|
You can log the request and response of a call to Vindicia by defining a block in your calling application and passing it to this gem.
|
data/lib/cashbox/version.rb
CHANGED