indy 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === 0.3.1 / 2011-08-03
2
+
3
+ * Patch to ignore simplecov load error
4
+ * See History.txt to review changes from 0.2.0
5
+
1
6
  === 0.3.0 / 2011-08-02
2
7
 
3
8
  * To search a file, specify a File object as the source.
@@ -1,5 +1,8 @@
1
- require 'simplecov'
2
- SimpleCov.start if ENV["COVERAGE"]
3
- # SimpleCov.root("#{File.dirname(__FILE__)}/../../../..")
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"
@@ -1,5 +1,9 @@
1
- require 'simplecov'
2
- SimpleCov.start if ENV["COVERAGE"]
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__)))
@@ -9,7 +9,7 @@ class Indy
9
9
  $VERBOSE = verbose
10
10
  end
11
11
 
12
- VERSION = "0.3.0"
12
+ VERSION = "0.3.1"
13
13
 
14
14
  # hash with one key (:string, :file, or :cmd) set to the string that defines the log
15
15
  attr_accessor :source
@@ -1,6 +1,9 @@
1
- require 'simplecov'
2
- SimpleCov.start if ENV["COVERAGE"]
3
- # SimpleCov.root("#{File.dirname(__FILE__)}/../..")
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.0
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.0 / 2011-08-02.\n\n Changes:\n \n * To search a file, specify a File object as the source.\n (Support for file paths will be restored in the future.)\n * Use :log_format as the key to specify your custom format and fields (:pattern is deprecated).\n \n\n [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>]\n\n "
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: