pry-rescue 0.18 → 0.18.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.
- data/Rakefile +4 -1
- data/pry-rescue.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
task :default => :test
|
|
2
|
+
task :spec => :test
|
|
3
|
+
|
|
1
4
|
desc "Run example"
|
|
2
5
|
task :example do
|
|
3
6
|
sh "ruby -I./lib/ ./examples/example.rb "
|
|
@@ -10,7 +13,7 @@ end
|
|
|
10
13
|
|
|
11
14
|
desc "Run tests"
|
|
12
15
|
task :test do
|
|
13
|
-
sh 'rspec spec
|
|
16
|
+
sh 'rspec spec'
|
|
14
17
|
end
|
|
15
18
|
|
|
16
19
|
task :build do
|
data/pry-rescue.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'pry-rescue'
|
|
3
|
-
s.version = '0.18'
|
|
3
|
+
s.version = '0.18.1'
|
|
4
4
|
s.summary = 'Open a pry session on any unhandled exceptions'
|
|
5
5
|
s.description = 'Allows you to wrap code in Pry::rescue{ } to open a pry session at any unhandled exceptions'
|
|
6
6
|
s.homepage = 'https://github.com/ConradIrwin/pry-rescue'
|