exception_notification-rake 0.2.2 → 0.3.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 548886560a8dc6a4889b969cf21941a725ba86ab
4
+ data.tar.gz: 7369c9fdbf5351cf48792644b4416f46ab588ea2
5
+ SHA512:
6
+ metadata.gz: eaa894a203a098089b11e64c95532b41add3e6a4396283182439389448bd42aa996eefe66c154d998e9d9d1180d9203a4dae18526a0555bd4c746de9be8406a8
7
+ data.tar.gz: fc082da7f1d9187b84e2acdc55f0cfe985a42ead7ddc54b3ef2750b3aa69128e3e0942d304673c3e7b511974f1bdb3f91c110f0a3a7d6465c6464d999a97103f
data/README.md CHANGED
@@ -7,6 +7,10 @@ This Ruby gem is an extension of the [exception_notification gem](http://rubygem
7
7
 
8
8
  ## Installation
9
9
 
10
+ If you're using Rails 4.2 or higher, including Rails 5 (or you're not using Rails at all), use the latest version of the gem (this is currently a release candidate and not extensively tested yet):
11
+
12
+ gem 'exception_notification-rake', '~> 0.3.0.rc1'
13
+
10
14
  If you're using Rails 4.1.x (or you're not using Rails at all), use the latest version of the gem:
11
15
 
12
16
  gem 'exception_notification-rake', '~> 0.2.2'
@@ -24,7 +28,7 @@ If you're using Rails 3, use the 0.0.x line of versions:
24
28
 
25
29
  ### Configuration for Email Notifications
26
30
 
27
- **Note:** These examples are for the latest version of the gem (using exception_notification 4.1 and Rails 4.1). For a Rails 3.2 example [see below](#rails-32-configuration-example).
31
+ **Note:** These examples are for the latest version of the gem (using exception_notification 4+ and Rails 4+). For a Rails 3.2 example [see below](#rails-32-configuration-example).
28
32
 
29
33
  Exception notification must be set up in your Rails config files. In general, you'll want to do this in environment-specific config files, such as `config/environments/production.rb`. Minimal configuration:
30
34
 
@@ -1,5 +1,5 @@
1
1
  module ExceptionNotifier
2
2
  class Rake
3
- VERSION = '0.2.2'
3
+ VERSION = '0.3.0.rc1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,64 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exception_notification-rake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
5
- prerelease:
4
+ version: 0.3.0.rc1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Nik Haldimann
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2017-01-10 00:00:00.000000000 Z
11
+ date: 2017-01-11 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: exception_notification
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
- version: 4.1.0
19
+ version: 4.2.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: 4.1.0
26
+ version: 4.2.0
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rake
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: 0.9.0
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: 0.9.0
46
- - !ruby/object:Gem::Dependency
47
- name: rails
48
- requirement: !ruby/object:Gem::Requirement
49
- none: false
50
- requirements:
51
- - - ~>
52
- - !ruby/object:Gem::Version
53
- version: 4.1.0
54
- type: :development
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
- requirements:
59
- - - ~>
60
- - !ruby/object:Gem::Version
61
- version: 4.1.0
62
41
  description: An extension of the exception_notification gem to support sending mail
63
42
  upon failures in Rake tasks
64
43
  email:
@@ -70,35 +49,33 @@ files:
70
49
  - LICENSE.md
71
50
  - README.md
72
51
  - lib/exception_notification/rake.rb
52
+ - lib/exception_notifier/rake.rb
73
53
  - lib/exception_notifier/rake/rake.rb
74
54
  - lib/exception_notifier/rake/rake_patch.rb
75
55
  - lib/exception_notifier/rake/version.rb
76
- - lib/exception_notifier/rake.rb
77
56
  - test/rake_test.rb
78
57
  homepage: https://github.com/nikhaldi/exception_notification-rake
79
58
  licenses: []
59
+ metadata: {}
80
60
  post_install_message:
81
61
  rdoc_options: []
82
62
  require_paths:
83
63
  - lib
84
64
  required_ruby_version: !ruby/object:Gem::Requirement
85
- none: false
86
65
  requirements:
87
- - - ! '>='
66
+ - - ">="
88
67
  - !ruby/object:Gem::Version
89
68
  version: '2.0'
90
69
  required_rubygems_version: !ruby/object:Gem::Requirement
91
- none: false
92
70
  requirements:
93
- - - ! '>='
71
+ - - ">"
94
72
  - !ruby/object:Gem::Version
95
- version: '0'
73
+ version: 1.3.1
96
74
  requirements: []
97
75
  rubyforge_project:
98
- rubygems_version: 1.8.23
76
+ rubygems_version: 2.4.8
99
77
  signing_key:
100
- specification_version: 3
78
+ specification_version: 4
101
79
  summary: Sending exception notifications upon Rake task failures
102
80
  test_files:
103
81
  - test/rake_test.rb
104
- has_rdoc: