abraham 1.4 → 1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +46 -0
- data/lib/abraham/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 451b561d3c42d9f3252fec6c2e15b7703d5e7ff7f7a8ab114925633bf2339eb4
|
4
|
+
data.tar.gz: c9f513bab795429532fed813fee72cc71ac3ee6df2af45afa0c4290a01e15b16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
+
```
|
data/lib/abraham/version.rb
CHANGED
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
|
+
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-
|
11
|
+
date: 2019-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|