dispatch-rider 1.8.1 → 1.8.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/DEPLOYING.md +25 -0
- data/README.md +1 -27
- data/lib/dispatch-rider/integrations/appsignal.rb +1 -1
- data/lib/dispatch-rider/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1294aedf3ed8a376c843f3838e504ae575dab25
|
4
|
+
data.tar.gz: c1474187c2a946e13b31c70c1fb275373e47a635
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17591e3a45bd15c6d49bebf231dca459c7ae42ada40da2b672f4580d7d2e89f2ad9f54dda080c24ce2e2664e1e0c5b88843895eba868e650b92b15844786c9c7
|
7
|
+
data.tar.gz: dcbbbb2b13179a1f69a076bacaed0768d923af374917f2678394eeac09d08da0d61c2b84dedcaf18a86c0b2782442677a7f98e9260fec63037b33bc46ad433f8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v1.8.1](https://github.com/payrollhero/dispatch-rider/tree/v1.8.1) (2016-01-19)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.8.0...v1.8.1)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Fixing class resolution [\#70](https://github.com/payrollhero/dispatch-rider/pull/70) ([piotrb](https://github.com/piotrb))
|
10
|
+
|
3
11
|
## [v1.8.0](https://github.com/payrollhero/dispatch-rider/tree/v1.8.0) (2016-01-19)
|
4
12
|
|
5
13
|
[Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.7.2...v1.8.0)
|
data/DEPLOYING.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
## Setup
|
2
|
+
|
3
|
+
In order to deploy a new version of the gem into the wild ...
|
4
|
+
|
5
|
+
You will need to configure your github api token for the changelog.
|
6
|
+
|
7
|
+
Generate a new token for changelogs [here](https://github.com/settings/tokens/new).
|
8
|
+
|
9
|
+
add:
|
10
|
+
|
11
|
+
```bash
|
12
|
+
export CHANGELOG_GITHUB_TOKEN=YOUR_CHANGELOG_API_TOKEN
|
13
|
+
```
|
14
|
+
|
15
|
+
somewhere in your shell init. (ie .zshrc or simillar)
|
16
|
+
|
17
|
+
## Deploying
|
18
|
+
|
19
|
+
1. Update `lib/dispatch-rider/version.rb`
|
20
|
+
2. Commit the changed files with the version number eg: `1.8.0`
|
21
|
+
3. Push this to git
|
22
|
+
4. Run `rake release`
|
23
|
+
5. Run `rake changelog` (has to be ran after release since its based on github tagging)
|
24
|
+
6. Commit the changed changelog named something like `changelog for 1.8.0`
|
25
|
+
7. Push this to git
|
data/README.md
CHANGED
@@ -505,33 +505,7 @@ Scheduled jobs currently require `ActiveRecord`. Support for other ORM will be a
|
|
505
505
|
|
506
506
|
## Deployment
|
507
507
|
|
508
|
-
|
509
|
-
|
510
|
-
You will need to configure your github api token for the changelog.
|
511
|
-
|
512
|
-
Generate a new token for changelogs [here](https://github.com/settings/tokens/new).
|
513
|
-
|
514
|
-
add:
|
515
|
-
|
516
|
-
```bash
|
517
|
-
export CHANGELOG_GITHUB_TOKEN=YOUR_CHANGELOG_API_TOKEN
|
518
|
-
```
|
519
|
-
|
520
|
-
somewhere in your shell init. (ie .zshrc or simillar)
|
521
|
-
|
522
|
-
|
523
|
-
```bash
|
524
|
-
vim lib/dispatch-rider/version.rb
|
525
|
-
# set the new version
|
526
|
-
# commit the changed version file
|
527
|
-
# name your commit with the version number eg: "1.8.0"
|
528
|
-
rake release
|
529
|
-
# to push the gem to rubygems.org
|
530
|
-
rake changelog
|
531
|
-
# commit the changed changelog
|
532
|
-
# name your commit with the version again eg: "changelog for 1.8.0"
|
533
|
-
git push
|
534
|
-
```
|
508
|
+
See `DEPLOYING.md`
|
535
509
|
|
536
510
|
## Contributing
|
537
511
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dispatch-rider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Suman Mukherjee
|
@@ -134,6 +134,7 @@ files:
|
|
134
134
|
- ".rubocop.yml"
|
135
135
|
- ".travis.yml"
|
136
136
|
- CHANGELOG.md
|
137
|
+
- DEPLOYING.md
|
137
138
|
- Gemfile
|
138
139
|
- LICENSE.txt
|
139
140
|
- README.md
|