dispatch-rider 1.8.1 → 1.8.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07eacc4af0c51ff05201d62e2166fc7120d1049d
4
- data.tar.gz: 781b694af21e8583d8105a4f9d246a532a66997b
3
+ metadata.gz: a1294aedf3ed8a376c843f3838e504ae575dab25
4
+ data.tar.gz: c1474187c2a946e13b31c70c1fb275373e47a635
5
5
  SHA512:
6
- metadata.gz: d2ac6d50f5ac1aca9d5474be04a68e2f32877bc4f8f25a15959115bf1d50649cee3e6aec49beaec445a92836bc1bb040661cd1860c99ae5c8898bae90679b6e3
7
- data.tar.gz: a06bf03a8ff9f2e4c6102c1b408cc047955695d8cc4edef34428a1b894c90e6684ebd63277b5f08fd8b0a94dfa1c610258e1d3dbd4bf4937bd00b7b7a63eb3cb
6
+ metadata.gz: 17591e3a45bd15c6d49bebf231dca459c7ae42ada40da2b672f4580d7d2e89f2ad9f54dda080c24ce2e2664e1e0c5b88843895eba868e650b92b15844786c9c7
7
+ data.tar.gz: dcbbbb2b13179a1f69a076bacaed0768d923af374917f2678394eeac09d08da0d61c2b84dedcaf18a86c0b2782442677a7f98e9260fec63037b33bc46ad433f8
@@ -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)
@@ -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
- In order to deploy a new version of the gem into the wild ...
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
 
@@ -29,7 +29,7 @@ if defined? Appsignal
29
29
  end
30
30
  raise exception
31
31
  ensure
32
- ::Appsignal::Transaction.current.complete!
32
+ ::Appsignal::Transaction.complete_current!
33
33
  end
34
34
  end
35
35
 
@@ -1,4 +1,4 @@
1
1
  # This file specifies the current version of the gem.
2
2
  module DispatchRider
3
- VERSION = "1.8.1"
3
+ VERSION = "1.8.2"
4
4
  end
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.1
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