exception_notification 4.1.0.rc2 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +10 -1
- data/Gemfile.lock +1 -1
- data/exception_notification.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6bae1cf5ca412dcb05dfa6204df8a2479b622cc
|
4
|
+
data.tar.gz: 51ecaf322c4f5ef0f46f2f243a793d0085051f49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cc6bce0dfaa2aafc646297998eea3c0b576036907b61bde5e75e9e0aaad4668060941b382291fd7e96b4f69ebd1c54cca0b806c58ff30a40dd5375c56f1f83f
|
7
|
+
data.tar.gz: 949faef594436deb0a25e7c68131ba33ef1bc05b05e33c93dd773ad172139764a6a9be95dabcc2174558a9f81704fc164477d3da3846df915d27e787ef49349c
|
data/CONTRIBUTING.md
CHANGED
@@ -24,10 +24,19 @@ If you've gone the extra mile and have a patch that fixes the issue, you
|
|
24
24
|
should submit a Pull Request!
|
25
25
|
|
26
26
|
* Fork the repo on Github.
|
27
|
+
* Run Bundler and setup your test database
|
28
|
+
|
29
|
+
```
|
30
|
+
bundle
|
31
|
+
cd test/dummy
|
32
|
+
bundle
|
33
|
+
bundle exec rake db:reset
|
34
|
+
bundle exec rake db:test:prepare
|
35
|
+
```
|
27
36
|
* Create a topic branch from where you want to base your work.
|
28
37
|
* Add a test for your change. Only refactoring and documentation changes
|
29
38
|
require no new tests. If you are adding functionality or fixing a bug,
|
30
39
|
we need a test!
|
31
|
-
* Run _all_ the tests to assure
|
40
|
+
* Run _all_ the tests to assure nothing else was broken. We only take pull requests with passing tests.
|
32
41
|
* Check for unnecessary whitespace with `git diff --check` before committing.
|
33
42
|
* Push to your fork and submit a pull request.
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'exception_notification'
|
3
|
-
s.version = '4.1.0
|
3
|
+
s.version = '4.1.0'
|
4
4
|
s.authors = ["Jamis Buck", "Josh Peek"]
|
5
|
-
s.date = %q{2015-
|
5
|
+
s.date = %q{2015-04-05}
|
6
6
|
s.summary = "Exception notification for Rails apps"
|
7
7
|
s.homepage = "http://smartinez87.github.com/exception_notification"
|
8
8
|
s.email = "smartinez87@gmail.com"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: exception_notification
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.0
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-04-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: actionmailer
|