abraham 1.4 → 1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +46 -0
  3. data/lib/abraham/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca52c3a0aa0f4083eef1a33a1099d4e38daeab9356d7a4b627431c4946fc3909
4
- data.tar.gz: cf910c06b3e50bd1a99e33caac9521da5483f521cf31aa2521e499d3b9868e8a
3
+ metadata.gz: 451b561d3c42d9f3252fec6c2e15b7703d5e7ff7f7a8ab114925633bf2339eb4
4
+ data.tar.gz: c9f513bab795429532fed813fee72cc71ac3ee6df2af45afa0c4290a01e15b16
5
5
  SHA512:
6
- metadata.gz: 8982797ad163a2cd6e06d65ce1beacb97817ab2da56805bac8d39812f3c791777e0c079e8b61d3835e4f94dc13d88b23f1adc2b1ba8d9b972d574819c0f56d89
7
- data.tar.gz: fa2b12411cde48ab87068e9cf5c038f9630777520bf23f9876a68a9c38ef55ed2c0136a845cb5f89a59cba68e489e102fbf85ad660ace22315b971da7b4f8c5d
6
+ metadata.gz: 7d9ffb4646cc0748d94d8c63e1321dc0846a7021eb95287242be27515d743462042604958b16a49d2ed0ed4f5db61c821472fde656cf8e8ba4d302672b9e8a2e
7
+ data.tar.gz: 7c61aa92ba3b763a914e98ebeca2c4168d192103c0951c1fde2b8da5ab61ebef81cfd493ebf79173f3b462aa0127ac35a1d97a9567892074ac1f9cdf5d14f07b
data/README.md CHANGED
@@ -133,3 +133,49 @@ Rails.application.configure do
133
133
  config.abraham.tours = {}
134
134
  end
135
135
  ```
136
+
137
+ ## Contributing
138
+
139
+ Contributions are welcome!
140
+
141
+ Create a feature branch (using git-flow) and submit as a pull request.
142
+
143
+ Everyone interacting in Abraham's codebase, issue tracker, etc. is expected to follow the [Contributor Covenent Code of Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct).
144
+
145
+ ### Testing
146
+
147
+ This Rails engine contains a test app called `dummy` with controller and system tests. They'll all get run with `rails t`.
148
+
149
+ Final testing should be done in a standalone Rails app, following the README instructions.
150
+
151
+ To install the `abraham` gem with a local path:
152
+
153
+ ```
154
+ gem 'abraham', path: '~/Workspace/abraham'
155
+ ```
156
+
157
+ ### Releasing
158
+
159
+ Create a git-flow release:
160
+
161
+ ```
162
+ $ git flow release start VERSION_NUMBER
163
+ ```
164
+
165
+ Edit `lib/abraham/version.rb` and increase the version number.
166
+
167
+ Build the gem and push to Rubygems:
168
+
169
+ ```
170
+ $ rake build
171
+ $ gem push pkg/abraham-VERSION_NUMBER.gem
172
+ ```
173
+
174
+ Finish the git-flow release and push to GitHub:
175
+
176
+ ```
177
+ $ git flow release finish
178
+ $ git push origin develop
179
+ $ git push origin master
180
+ $ git push --tags
181
+ ```
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Abraham
4
- VERSION = "1.4"
4
+ VERSION = "1.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abraham
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.4'
4
+ version: '1.5'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Abbett
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-26 00:00:00.000000000 Z
11
+ date: 2019-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails