everything-core 0.0.10 → 0.0.11

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
  SHA256:
3
- metadata.gz: 31549f8f23078f98d24bd919d4a8d86c4111c16f1b55f1ac150c1fee8f20fbea
4
- data.tar.gz: a263ce02a4ed1994348903f3dc65bac7e2d3f1d431126aba9a143c25728c10d3
3
+ metadata.gz: b5132fba9e3f69765b36d3de8672e79e80488e3e7cf9ee9026e59d4172500c0e
4
+ data.tar.gz: 0da5ea64259238990a851fc793c9050a5397ba959d8b3f7b29d716a4ba95a9b1
5
5
  SHA512:
6
- metadata.gz: f6ca08a99be2b761ba6bdbfcbe188d4c8fd83b51dc3fc399c5183d7049ad678389386ee1b8a41927b41e416ca41a33ac2f619f33aed0d6d5d53ffca9c759a7c4
7
- data.tar.gz: 8f4b3b5a8ebbf9aa44a14ec632a6bf53dd21af24204d326db6007dbdd8fa6994cd95377ccb144a6fbf4f6267107c5d72a4742538fcb0cb05d47c47a873e0d161
6
+ metadata.gz: e3c45377eb893b0a78bae9a092c606c773b46021079708d761879639508f586d2e7ca82fb4b3d4907e5ead95f94367eb4f3d9cb1f7ea4fc85458d3fc51fc1715
7
+ data.tar.gz: 375a7eda0d33a90e95d5bc249cdff5e9d0fd315b2e85c6f9a83a38d31c54be126c6468879abd98a14926bd21a6dc30263bcc7698075d3cc8a3b908e92b55ebf8
@@ -1,4 +1,4 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2.3
4
- before_install: gem install bundler -v 1.11.2
3
+ - 2.7.1
4
+ before_install: gem install bundler
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.11
4
+
5
+ - Update changelog for 0.0.10 changes
6
+ - Update travis settings to use ruby 2.7.1 and bundler 2
7
+
8
+ ## 0.0.10
9
+
10
+ - Upgrade to Bundler v2
11
+
3
12
  ## 0.0.9
4
13
 
5
14
  - Make Content#file_name a public method
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`. To release
106
- a new version, update the version number in `lib/everything/version.rb`, and
107
- commit the version file change. Then you can create a build with `rake build`.
108
- Then run `rake release`, which will create a git tag for the
109
- version, push git commits and tags, and push the `.gem` file to
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
 
@@ -1,3 +1,3 @@
1
1
  module Everything
2
- VERSION = '0.0.10'
2
+ VERSION = '0.0.11'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: everything-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Tolle