indy 0.3.0 → 0.3.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/History.txt +5 -0
- data/features/step_definitions/support/env.rb +6 -3
- data/lib/indy.rb +6 -2
- data/lib/indy/indy.rb +1 -1
- data/spec/helper.rb +6 -3
- metadata +2 -2
data/History.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
begin
|
2
|
+
require 'simplecov'
|
3
|
+
SimpleCov.start if ENV["COVERAGE"]
|
4
|
+
rescue
|
5
|
+
puts 'Run "gem install simplecov" to enable code coverage reporting'
|
6
|
+
end
|
4
7
|
|
5
8
|
require "#{File.dirname(__FILE__)}/../../../lib/indy"
|
data/lib/indy.rb
CHANGED
@@ -1,5 +1,9 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
begin
|
2
|
+
require 'simplecov'
|
3
|
+
SimpleCov.start if ENV["COVERAGE"]
|
4
|
+
rescue
|
5
|
+
# ignore
|
6
|
+
end
|
3
7
|
|
4
8
|
$:.unshift(File.dirname(__FILE__)) unless
|
5
9
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
data/lib/indy/indy.rb
CHANGED
data/spec/helper.rb
CHANGED
@@ -1,6 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
begin
|
2
|
+
require 'simplecov'
|
3
|
+
SimpleCov.start if ENV["COVERAGE"]
|
4
|
+
rescue
|
5
|
+
puts 'Run "gem install simplecov" to enable code coverage reporting'
|
6
|
+
end
|
4
7
|
|
5
8
|
require File.expand_path("#{File.dirname(__FILE__)}/../lib/indy") unless
|
6
9
|
$:.include? File.expand_path("#{File.dirname(__FILE__)}/../lib/indy")
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: indy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.3.
|
5
|
+
version: 0.3.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Franklin Webber
|
@@ -187,7 +187,7 @@ files:
|
|
187
187
|
homepage: http://github.com/burtlo/Indy
|
188
188
|
licenses:
|
189
189
|
- MIT
|
190
|
-
post_install_message: "\n [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>]\n\n Thank you for installing Indy 0.3.
|
190
|
+
post_install_message: "\n [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>]\n\n Thank you for installing Indy 0.3.1 / 2011-08-03.\n\n Changes:\n \n * Patch to ignore simplecov load error\n * See History.txt to review changes from 0.2.0\n \n\n [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>]\n\n "
|
191
191
|
rdoc_options:
|
192
192
|
- --charset=UTF-8
|
193
193
|
require_paths:
|