airbrake-extended 0.0.7 → 0.0.8
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 +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +1 -1
- data/Rakefile +40 -0
- data/lib/patches/airbrake_config.rb +4 -0
- data/lib/version.rb +7 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 095304355cee0a1f5c047d3bd89c89d6a603f88d
|
|
4
|
+
data.tar.gz: 9c1addf751024b8083a4d74bc2bd43db60016ba5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f73f90518beeefaa22a7e997f7efccc4e311f26dbcbcf075e19752b134a3c1e0b0898c7247b3146cc8977f31a6b6ea4a381198ec367426582046b7423b65f32
|
|
7
|
+
data.tar.gz: ec5cc92d87d42ebce0da1fafda6059270efae2aa2bc99fbe8c1925d99646e83dd84b7278bcd79dce87e6f871b84189606617b1d081a7c5867d1de8aaf27607d1
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/Rakefile
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'rake'
|
|
3
|
+
require 'rake/testtask'
|
|
4
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
5
|
+
require "airbrake-extended"
|
|
6
|
+
|
|
7
|
+
# Rake::TestTask.new(:test) do |test|
|
|
8
|
+
# test.libs << 'lib' << 'test'
|
|
9
|
+
# test.pattern = 'test/{functional,unit}/**/*_test.rb'
|
|
10
|
+
# end
|
|
11
|
+
|
|
12
|
+
# namespace :test do
|
|
13
|
+
# Rake::TestTask.new(:lint) do |test|
|
|
14
|
+
# test.libs << 'lib' << 'test'
|
|
15
|
+
# test.pattern = 'test/test_active_model_lint.rb'
|
|
16
|
+
# end
|
|
17
|
+
|
|
18
|
+
# task :all => ['test', 'test:lint']
|
|
19
|
+
# end
|
|
20
|
+
|
|
21
|
+
# task :default => 'test:all'
|
|
22
|
+
|
|
23
|
+
desc 'Builds the gem'
|
|
24
|
+
task :build do
|
|
25
|
+
sh "gem build airbrake-extended.gemspec"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
desc 'Builds and installs the gem'
|
|
29
|
+
task :install => :build do
|
|
30
|
+
sh "gem install airbrake-extended-#{Delayed::Plugins::AirbrakeExtended::VERSION}"
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
desc 'Tags version, pushes to remote, and pushes gem'
|
|
34
|
+
task :release => :build do
|
|
35
|
+
sh "git tag v#{Delayed::Plugins::AirbrakeExtended::VERSION}"
|
|
36
|
+
sh "git push origin master"
|
|
37
|
+
sh "git push origin v#{Delayed::Plugins::AirbrakeExtended::VERSION}"
|
|
38
|
+
sh "gem push airbrake-extended-#{Delayed::Plugins::AirbrakeExtended::VERSION}.gem"
|
|
39
|
+
sh "rm airbrake-extended-#{Delayed::Plugins::AirbrakeExtended::VERSION}.gem"
|
|
40
|
+
end
|
data/lib/version.rb
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: airbrake-extended
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jordan Feldstein
|
|
@@ -63,11 +63,14 @@ files:
|
|
|
63
63
|
- Gemfile
|
|
64
64
|
- Gemfile.lock
|
|
65
65
|
- README.md
|
|
66
|
+
- Rakefile
|
|
66
67
|
- airbrake-extended.gemspec
|
|
67
68
|
- lib/README.md
|
|
68
69
|
- lib/airbrake-extended.rb
|
|
70
|
+
- lib/patches/airbrake_config.rb
|
|
69
71
|
- lib/patches/delayed_plugin.rb
|
|
70
72
|
- lib/patches/standard_error.rb
|
|
73
|
+
- lib/version.rb
|
|
71
74
|
homepage: https://github.com/jfeldstein/airbrake-extended
|
|
72
75
|
licenses:
|
|
73
76
|
- MIT
|