everything-core 0.0.10 → 0.0.11
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/.travis.yml +2 -2
- data/CHANGELOG.md +9 -0
- data/README.md +16 -5
- data/lib/everything/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: b5132fba9e3f69765b36d3de8672e79e80488e3e7cf9ee9026e59d4172500c0e
|
|
4
|
+
data.tar.gz: 0da5ea64259238990a851fc793c9050a5397ba959d8b3f7b29d716a4ba95a9b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3c45377eb893b0a78bae9a092c606c773b46021079708d761879639508f586d2e7ca82fb4b3d4907e5ead95f94367eb4f3d9cb1f7ea4fc85458d3fc51fc1715
|
|
7
|
+
data.tar.gz: 375a7eda0d33a90e95d5bc249cdff5e9d0fd315b2e85c6f9a83a38d31c54be126c6468879abd98a14926bd21a6dc30263bcc7698075d3cc8a3b908e92b55ebf8
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -102,11 +102,22 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
102
102
|
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
|
103
103
|
prompt that will allow you to experiment.
|
|
104
104
|
|
|
105
|
-
To install this gem onto your local machine, run `rake install`.
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
105
|
+
To install this gem onto your local machine, run `rake install`.
|
|
106
|
+
|
|
107
|
+
To release a new version,
|
|
108
|
+
- check out a new branch
|
|
109
|
+
- make your code changes
|
|
110
|
+
- update the version number in `lib/everything/version.rb`
|
|
111
|
+
- update the `CHANGELOG.md` with what changed.
|
|
112
|
+
- commit your code changes
|
|
113
|
+
- push new branch to github with `git push -u origin HEAD`
|
|
114
|
+
- create a new PR for this
|
|
115
|
+
- merge in PR to master
|
|
116
|
+
- locally, check out master again
|
|
117
|
+
- git pull
|
|
118
|
+
- create a build with `rake build`
|
|
119
|
+
- run `rake release`, which will create a git tag for the version,
|
|
120
|
+
push git commits and tags, and push the `.gem` file to
|
|
110
121
|
[rubygems.org](https://rubygems.org).
|
|
111
122
|
|
|
112
123
|
|
data/lib/everything/version.rb
CHANGED