merb-exceptions 1.1.0 → 1.1.1

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.
Files changed (3) hide show
  1. data/Rakefile +0 -37
  2. data/lib/merb-exceptions/version.rb +1 -1
  3. metadata +26 -14
data/Rakefile CHANGED
@@ -1,46 +1,9 @@
1
1
  require 'rubygems'
2
2
  require 'rake'
3
3
 
4
- # Assume a typical dev checkout to fetch the current merb-core version
5
- require File.expand_path('../../merb-core/lib/merb-core/version', __FILE__)
6
-
7
4
  # Load this library's version information
8
5
  require File.expand_path('../lib/merb-exceptions/version', __FILE__)
9
6
 
10
- begin
11
-
12
- gem 'jeweler', '~> 1.4'
13
- require 'jeweler'
14
-
15
- Jeweler::Tasks.new do |gemspec|
16
-
17
- gemspec.version = Merb::Exceptions::VERSION.dup
18
-
19
- gemspec.name = "merb-exceptions"
20
- gemspec.description = "Merb plugin that supports exception notification"
21
- gemspec.summary = "Merb plugin that provides Email and web hook exceptions for Merb."
22
-
23
- gemspec.authors = [ "Andy Kent" ]
24
- gemspec.email = "andy@new-bamboo.co.uk"
25
- gemspec.homepage = "http://merbivore.com/"
26
-
27
- gemspec.files = %w(LICENSE Rakefile README.markdown TODO) + Dir['{lib,spec}/**/*']
28
-
29
- # Runtime dependencies
30
- gemspec.add_dependency 'merb-core', "~> #{Merb::VERSION}"
31
- gemspec.add_dependency 'merb-mailer', "~> #{Merb::VERSION}"
32
-
33
- # Development dependencies
34
- gemspec.add_development_dependency 'rspec', '>= 1.2.9'
35
-
36
- end
37
-
38
- Jeweler::GemcutterTasks.new
39
-
40
- rescue LoadError
41
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
42
- end
43
-
44
7
  require 'spec/rake/spectask'
45
8
  Spec::Rake::SpecTask.new(:spec) do |spec|
46
9
  spec.spec_opts << '--options' << 'spec/spec.opts' if File.exists?('spec/spec.opts')
@@ -1,5 +1,5 @@
1
1
  module Merb
2
2
  module Exceptions
3
- VERSION = '1.1.0'.freeze
3
+ VERSION = '1.1.1'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb-exceptions
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 17
4
5
  prerelease: false
5
6
  segments:
6
7
  - 1
7
8
  - 1
8
- - 0
9
- version: 1.1.0
9
+ - 1
10
+ version: 1.1.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Andy Kent
@@ -14,44 +15,50 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-03-22 00:00:00 +00:00
18
+ date: 2010-06-15 00:00:00 +01:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
22
  name: merb-core
22
23
  prerelease: false
23
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
24
26
  requirements:
25
27
  - - ~>
26
28
  - !ruby/object:Gem::Version
29
+ hash: 17
27
30
  segments:
28
31
  - 1
29
32
  - 1
30
- - 0
31
- version: 1.1.0
33
+ - 1
34
+ version: 1.1.1
32
35
  type: :runtime
33
36
  version_requirements: *id001
34
37
  - !ruby/object:Gem::Dependency
35
38
  name: merb-mailer
36
39
  prerelease: false
37
40
  requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
38
42
  requirements:
39
43
  - - ~>
40
44
  - !ruby/object:Gem::Version
45
+ hash: 17
41
46
  segments:
42
47
  - 1
43
48
  - 1
44
- - 0
45
- version: 1.1.0
49
+ - 1
50
+ version: 1.1.1
46
51
  type: :runtime
47
52
  version_requirements: *id002
48
53
  - !ruby/object:Gem::Dependency
49
54
  name: rspec
50
55
  prerelease: false
51
56
  requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
52
58
  requirements:
53
59
  - - ">="
54
60
  - !ruby/object:Gem::Version
61
+ hash: 13
55
62
  segments:
56
63
  - 1
57
64
  - 2
@@ -66,51 +73,56 @@ executables: []
66
73
  extensions: []
67
74
 
68
75
  extra_rdoc_files:
76
+ - README.markdown
69
77
  - LICENSE
70
78
  - TODO
71
79
  files:
72
- - LICENSE
73
- - README.markdown
74
80
  - Rakefile
75
- - TODO
76
- - lib/merb-exceptions.rb
77
81
  - lib/merb-exceptions/default_exception_extensions.rb
78
82
  - lib/merb-exceptions/exceptions_helper.rb
79
83
  - lib/merb-exceptions/notification.rb
80
84
  - lib/merb-exceptions/templates/email.erb
81
85
  - lib/merb-exceptions/version.rb
86
+ - lib/merb-exceptions.rb
82
87
  - spec/default_exception_extensions_spec.rb
83
88
  - spec/exceptions_helper_spec.rb
84
89
  - spec/notification_spec.rb
85
90
  - spec/spec.opts
86
91
  - spec/spec_helper.rb
92
+ - README.markdown
93
+ - LICENSE
94
+ - TODO
87
95
  has_rdoc: true
88
96
  homepage: http://merbivore.com/
89
97
  licenses: []
90
98
 
91
99
  post_install_message:
92
- rdoc_options:
93
- - --charset=UTF-8
100
+ rdoc_options: []
101
+
94
102
  require_paths:
95
103
  - lib
96
104
  required_ruby_version: !ruby/object:Gem::Requirement
105
+ none: false
97
106
  requirements:
98
107
  - - ">="
99
108
  - !ruby/object:Gem::Version
109
+ hash: 3
100
110
  segments:
101
111
  - 0
102
112
  version: "0"
103
113
  required_rubygems_version: !ruby/object:Gem::Requirement
114
+ none: false
104
115
  requirements:
105
116
  - - ">="
106
117
  - !ruby/object:Gem::Version
118
+ hash: 3
107
119
  segments:
108
120
  - 0
109
121
  version: "0"
110
122
  requirements: []
111
123
 
112
124
  rubyforge_project:
113
- rubygems_version: 1.3.6
125
+ rubygems_version: 1.3.7
114
126
  signing_key:
115
127
  specification_version: 3
116
128
  summary: Merb plugin that provides Email and web hook exceptions for Merb.