sourcify 0.2.2.1 → 0.2.3

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 CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.2.3 (Sep 15, 2010)
2
+
3
+ * since (static) code scanner doesn't run in 1.8.6, we enforce ParseTree mode
4
+ for 1.8.6 [#ngty]
5
+
1
6
  === 0.2.2 (Sep 15, 2010)
2
7
 
3
8
  * fixed failure to run on MRI-1.8.6 [#ngty]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.2.1
1
+ 0.2.3
data/lib/sourcify.rb CHANGED
@@ -5,6 +5,7 @@ begin
5
5
  require 'parse_tree'
6
6
  require 'parse_tree_extensions'
7
7
  rescue LoadError
8
+ raise if RUBY_VERSION == '1.8.6' # support for code scanner in 1.8.6 is too tedious
8
9
  require 'ruby_parser'
9
10
  require 'sexp_processor'
10
11
  require 'file/tail'
data/sourcify.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sourcify}
8
- s.version = "0.2.2.1"
8
+ s.version = "0.2.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["NgTzeYang"]
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sourcify
3
3
  version: !ruby/object:Gem::Version
4
- hash: 85
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 2
10
- - 1
11
- version: 0.2.2.1
9
+ - 3
10
+ version: 0.2.3
12
11
  platform: ruby
13
12
  authors:
14
13
  - NgTzeYang