seamusabshere-errata 0.1.0
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/.document +5 -0
- data/.gitignore +5 -0
- data/LICENSE +20 -0
- data/README.rdoc +18 -0
- data/Rakefile +65 -0
- data/VERSION +1 -0
- data/errata.gemspec +70 -0
- data/lib/errata.rb +39 -0
- data/lib/erratum/delete.rb +24 -0
- data/lib/erratum/reject.rb +20 -0
- data/lib/erratum/replace.rb +27 -0
- data/lib/erratum/simplify.rb +33 -0
- data/lib/erratum/transform.rb +25 -0
- data/lib/erratum/truncate.rb +24 -0
- data/lib/erratum.rb +75 -0
- data/test/errata_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- metadata +94 -0
data/.document
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2009 Seamus Abshere
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
= errata
|
|
2
|
+
|
|
3
|
+
Description goes here.
|
|
4
|
+
|
|
5
|
+
== Note on Patches/Pull Requests
|
|
6
|
+
|
|
7
|
+
* Fork the project.
|
|
8
|
+
* Make your feature addition or bug fix.
|
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
|
10
|
+
future version unintentionally.
|
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
|
12
|
+
(if you want to have your own version, that is fine but
|
|
13
|
+
bump version in a commit by itself I can ignore when I pull)
|
|
14
|
+
* Send me a pull request. Bonus points for topic branches.
|
|
15
|
+
|
|
16
|
+
== Copyright
|
|
17
|
+
|
|
18
|
+
Copyright (c) 2009 Seamus Abshere. See LICENSE for details.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'rake'
|
|
3
|
+
|
|
4
|
+
begin
|
|
5
|
+
require 'jeweler'
|
|
6
|
+
Jeweler::Tasks.new do |gem|
|
|
7
|
+
gem.name = "errata"
|
|
8
|
+
gem.summary = %Q{Correct strings based on remote errata files}
|
|
9
|
+
gem.description = %Q{Correct strings based on remote errata files}
|
|
10
|
+
gem.email = "seamus@abshere.net"
|
|
11
|
+
gem.homepage = "http://github.com/seamusabshere/errata"
|
|
12
|
+
gem.authors = ["Seamus Abshere", "Andy Rossmeissl"]
|
|
13
|
+
%w{ activesupport seamusabshere-remote_table }.each { |name| gem.add_dependency name }
|
|
14
|
+
gem.require_path = "lib"
|
|
15
|
+
gem.files.include %w(lib/erratum.rb lib/erratum/**/*) unless gem.files.empty? # seems to fail once it's in the wild
|
|
16
|
+
gem.rdoc_options << '--line-numbers' << '--inline-source'
|
|
17
|
+
# gem.rubyforge_project = "errata"
|
|
18
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
Jeweler::RubyforgeTasks.new do |rubyforge|
|
|
22
|
+
rubyforge.doc_task = "rdoc"
|
|
23
|
+
end
|
|
24
|
+
rescue LoadError
|
|
25
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
require 'rake/testtask'
|
|
29
|
+
Rake::TestTask.new(:test) do |test|
|
|
30
|
+
test.libs << 'lib' << 'test'
|
|
31
|
+
test.pattern = 'test/**/*_test.rb'
|
|
32
|
+
test.verbose = true
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
begin
|
|
36
|
+
require 'rcov/rcovtask'
|
|
37
|
+
Rcov::RcovTask.new do |test|
|
|
38
|
+
test.libs << 'test'
|
|
39
|
+
test.pattern = 'test/**/*_test.rb'
|
|
40
|
+
test.verbose = true
|
|
41
|
+
end
|
|
42
|
+
rescue LoadError
|
|
43
|
+
task :rcov do
|
|
44
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
task :default => :test
|
|
52
|
+
|
|
53
|
+
require 'rake/rdoctask'
|
|
54
|
+
Rake::RDocTask.new do |rdoc|
|
|
55
|
+
if File.exist?('VERSION')
|
|
56
|
+
version = File.read('VERSION')
|
|
57
|
+
else
|
|
58
|
+
version = ""
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
62
|
+
rdoc.title = "errata #{version}"
|
|
63
|
+
rdoc.rdoc_files.include('README*')
|
|
64
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
65
|
+
end
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1.0
|
data/errata.gemspec
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{errata}
|
|
8
|
+
s.version = "0.1.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Seamus Abshere", "Andy Rossmeissl"]
|
|
12
|
+
s.date = %q{2009-08-18}
|
|
13
|
+
s.description = %q{Correct strings based on remote errata files}
|
|
14
|
+
s.email = %q{seamus@abshere.net}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"errata.gemspec",
|
|
27
|
+
"lib/errata.rb",
|
|
28
|
+
"lib/erratum.rb",
|
|
29
|
+
"lib/erratum.rb",
|
|
30
|
+
"lib/erratum/delete.rb",
|
|
31
|
+
"lib/erratum/delete.rb",
|
|
32
|
+
"lib/erratum/reject.rb",
|
|
33
|
+
"lib/erratum/reject.rb",
|
|
34
|
+
"lib/erratum/replace.rb",
|
|
35
|
+
"lib/erratum/replace.rb",
|
|
36
|
+
"lib/erratum/simplify.rb",
|
|
37
|
+
"lib/erratum/simplify.rb",
|
|
38
|
+
"lib/erratum/transform.rb",
|
|
39
|
+
"lib/erratum/transform.rb",
|
|
40
|
+
"lib/erratum/truncate.rb",
|
|
41
|
+
"lib/erratum/truncate.rb",
|
|
42
|
+
"test/errata_test.rb",
|
|
43
|
+
"test/test_helper.rb"
|
|
44
|
+
]
|
|
45
|
+
s.homepage = %q{http://github.com/seamusabshere/errata}
|
|
46
|
+
s.rdoc_options = ["--charset=UTF-8", "--line-numbers", "--inline-source"]
|
|
47
|
+
s.require_paths = ["lib"]
|
|
48
|
+
s.rubygems_version = %q{1.3.5}
|
|
49
|
+
s.summary = %q{Correct strings based on remote errata files}
|
|
50
|
+
s.test_files = [
|
|
51
|
+
"test/errata_test.rb",
|
|
52
|
+
"test/test_helper.rb"
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
if s.respond_to? :specification_version then
|
|
56
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
57
|
+
s.specification_version = 3
|
|
58
|
+
|
|
59
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
60
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
|
61
|
+
s.add_runtime_dependency(%q<seamusabshere-remote_table>, [">= 0"])
|
|
62
|
+
else
|
|
63
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
64
|
+
s.add_dependency(%q<seamusabshere-remote_table>, [">= 0"])
|
|
65
|
+
end
|
|
66
|
+
else
|
|
67
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
68
|
+
s.add_dependency(%q<seamusabshere-remote_table>, [">= 0"])
|
|
69
|
+
end
|
|
70
|
+
end
|
data/lib/errata.rb
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
require 'erratum'
|
|
2
|
+
require 'erratum/delete'
|
|
3
|
+
require 'erratum/reject'
|
|
4
|
+
require 'erratum/replace'
|
|
5
|
+
require 'erratum/simplify'
|
|
6
|
+
require 'erratum/transform'
|
|
7
|
+
require 'erratum/truncate'
|
|
8
|
+
|
|
9
|
+
class Errata
|
|
10
|
+
attr_reader :klass
|
|
11
|
+
|
|
12
|
+
def initialize(options = {})
|
|
13
|
+
@klass = options[:klass]
|
|
14
|
+
@_table = RemoteTable.new(:url => options[:url])
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def rejects?(row)
|
|
18
|
+
rejections.any? { |erratum| erratum.targets?(row) }
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def correct!(row)
|
|
22
|
+
corrections.each { |erratum| erratum.correct!(row) }
|
|
23
|
+
nil
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def implied_matching_methods
|
|
27
|
+
(rejections + corrections).map { |erratum| erratum.matching_method }.compact.uniq
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
private
|
|
31
|
+
|
|
32
|
+
def rejections
|
|
33
|
+
@_rejections ||= @_table.rows.map { |erratum| ::Errata::Erratum::Reject.new(self, erratum) if erratum[:action] == 'reject' }.compact
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def corrections
|
|
37
|
+
@_corrections ||= @_table.rows.map { |erratum| "::Errata::Erratum::#{erratum[:action].camelcase}".constantize.new(self, erratum) if %w{delete replace simplify transform truncate}.include?(erratum[:action]) }.compact
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
class Errata
|
|
2
|
+
class Erratum
|
|
3
|
+
class Delete < Erratum
|
|
4
|
+
attr_accessor :matching_expression, :backfill
|
|
5
|
+
|
|
6
|
+
def initialize(errata, options = {})
|
|
7
|
+
super
|
|
8
|
+
set_matching_expression(options)
|
|
9
|
+
# otherwise abbr(X) will kill the characters before and after the match
|
|
10
|
+
@backfill = /\Aabbr\((.*)\)\z/.match(options[:x]) ? '\1\2' : ''
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def inspect
|
|
14
|
+
super + " matching_expression=#{matching_expression}>"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def correct!(row)
|
|
18
|
+
super(row) do
|
|
19
|
+
row[column].gsub!(matching_expression, backfill)
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
class Errata
|
|
2
|
+
class Erratum
|
|
3
|
+
class Reject < Erratum
|
|
4
|
+
attr_accessor :matching_expression
|
|
5
|
+
|
|
6
|
+
def initialize(errata, options = {})
|
|
7
|
+
super
|
|
8
|
+
set_matching_expression(options.merge(:prefix => true))
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def inspect
|
|
12
|
+
super + " matching_expression=#{matching_expression}"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def correct!
|
|
16
|
+
raise "rejections don't correct"
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
class Errata
|
|
2
|
+
class Erratum
|
|
3
|
+
class Replace < Erratum
|
|
4
|
+
attr_accessor :matching_expression, :correction
|
|
5
|
+
|
|
6
|
+
def initialize(errata, options = {})
|
|
7
|
+
super
|
|
8
|
+
set_matching_expression(options)
|
|
9
|
+
@correction = /\Aabbr\((.*)\)\z/.match(options[:x]) ? '\1' + options[:y].to_s + '\2' : options[:y].to_s
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def inspect
|
|
13
|
+
super + " matching_expression=#{matching_expression} correction=#{correction}>"
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def correct!(row)
|
|
17
|
+
super(row) do
|
|
18
|
+
if matching_expression.blank?
|
|
19
|
+
row[column] = correction
|
|
20
|
+
else
|
|
21
|
+
row[column].gsub!(matching_expression, correction)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
class Errata
|
|
2
|
+
class Erratum
|
|
3
|
+
class Simplify < Erratum
|
|
4
|
+
attr_accessor :second_column
|
|
5
|
+
|
|
6
|
+
def initialize(errata, options = {})
|
|
7
|
+
super
|
|
8
|
+
@second_column = options[:x]
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def inspect
|
|
12
|
+
super + " second_column=#{second_column}>"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def targets?(row)
|
|
16
|
+
!row[column].blank? and !row[second_column].blank? and method_matches?(row) and matching_expression(row).match(row[column])
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def correct!(row)
|
|
20
|
+
super(row) do
|
|
21
|
+
row[column].gsub!(matching_expression(row), '')
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
private
|
|
26
|
+
|
|
27
|
+
def matching_expression(row)
|
|
28
|
+
@_matching_expressions ||= {}
|
|
29
|
+
@_matching_expressions[row[second_column]] ||= /[\s\(\[\'\"]*#{Regexp.escape(row[second_column])}[\s\)\]\'\"]*/
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
class Errata
|
|
2
|
+
class Erratum
|
|
3
|
+
class Transform < Erratum
|
|
4
|
+
ALLOWED_METHODS = %w{upcase downcase}
|
|
5
|
+
attr_accessor :matching_expression, :string_method
|
|
6
|
+
|
|
7
|
+
def initialize(errata, options = {})
|
|
8
|
+
super
|
|
9
|
+
set_matching_expression(options)
|
|
10
|
+
@string_method = options[:y]
|
|
11
|
+
raise "string method (#{@string_method}) needs to be in (#{ALLOWED_METHODS.join(', ')})" unless ALLOWED_METHODS.include?(@string_method)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def inspect
|
|
15
|
+
super + " matching_expression=#{matching_expression} string_method=#{string_method}>"
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def correct!(row)
|
|
19
|
+
super(row) do
|
|
20
|
+
row[column].gsub!(matching_expression) { |match| match.send(string_method) }
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
class Errata
|
|
2
|
+
class Erratum
|
|
3
|
+
class Truncate < Erratum
|
|
4
|
+
attr_accessor :matching_expression, :necessary_and_sufficient_prefix
|
|
5
|
+
|
|
6
|
+
def initialize(errata, options = {})
|
|
7
|
+
super
|
|
8
|
+
@necessary_and_sufficient_prefix = options[:x]
|
|
9
|
+
raise "necessary_and_sufficient_prefix cannot be blank" if @necessary_and_sufficient_prefix.blank?
|
|
10
|
+
set_matching_expression(options.merge(:prefix => true))
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def inspect
|
|
14
|
+
super + " matching_expression=#{matching_expression} necessary_and_sufficient_prefix=#{necessary_and_sufficient_prefix}>"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def correct!(row)
|
|
18
|
+
super(row) do
|
|
19
|
+
row[column] = necessary_and_sufficient_prefix
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
data/lib/erratum.rb
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
class Errata
|
|
2
|
+
class Erratum
|
|
3
|
+
attr_accessor :errata, :column, :matching_method
|
|
4
|
+
delegate :klass, :to => :errata
|
|
5
|
+
|
|
6
|
+
def initialize(errata, options = {})
|
|
7
|
+
raise "you can't set this from outside" if options.has_key?(:prefix)
|
|
8
|
+
@errata = errata
|
|
9
|
+
@column = options[:section]
|
|
10
|
+
@matching_method = "#{options[:condition].gsub(/[^a-z0-9]/i, '_').downcase}?".to_sym if options[:condition]
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def inspect
|
|
14
|
+
"<#{self.class.name}:#{object_id} klass=#{klass.name} column=#{column} matching_method=#{matching_method}"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def targets?(row)
|
|
18
|
+
!!(method_matches?(row) and expression_matches?(row))
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def correct!(row, &block)
|
|
22
|
+
return :skipped unless targets?(row)
|
|
23
|
+
# old_value = row[column].to_s.dup
|
|
24
|
+
yield if block_given?
|
|
25
|
+
# unless name.demodulize.underscore == 'truncate' or name.demodulize.underscore == 'simplify'
|
|
26
|
+
# puts "-" * 64
|
|
27
|
+
# puts inspect
|
|
28
|
+
# puts row.inspect
|
|
29
|
+
# if row[column] != old_value
|
|
30
|
+
# puts "#{old_value} -> #{row[column]}"
|
|
31
|
+
# else
|
|
32
|
+
# puts "no change"
|
|
33
|
+
# end
|
|
34
|
+
# puts
|
|
35
|
+
# end
|
|
36
|
+
:corrected
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
private
|
|
40
|
+
|
|
41
|
+
def expression_matches?(row)
|
|
42
|
+
return true if matching_expression.blank? or column.blank?
|
|
43
|
+
if matching_expression.is_a?(Regexp)
|
|
44
|
+
matching_expression.match(row[column].to_s)
|
|
45
|
+
else
|
|
46
|
+
row[column].to_s.include?(matching_expression)
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def method_matches?(row)
|
|
51
|
+
return true if matching_method.nil?
|
|
52
|
+
klass.send(matching_method, row)
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def set_matching_expression(options = {})
|
|
56
|
+
if options[:x].blank?
|
|
57
|
+
@matching_expression = nil
|
|
58
|
+
elsif options[:x].starts_with?('/')
|
|
59
|
+
if options[:x].ends_with?('i')
|
|
60
|
+
ci = true
|
|
61
|
+
options[:x] = options[:x].chop
|
|
62
|
+
else
|
|
63
|
+
ci = false
|
|
64
|
+
end
|
|
65
|
+
@matching_expression = Regexp.new(options[:x].gsub(/\A\/|\/\z/, ''), ci)
|
|
66
|
+
elsif /\Aabbr\((.*)\)\z/.match(options[:x])
|
|
67
|
+
@matching_expression = Regexp.new('(\A|\s)' + $1.split(/(\w\??)/).reject { |a| a == '' }.join('\.?\s?') + '\.?([^\w\.]|\z)', true)
|
|
68
|
+
elsif options[:prefix] == true
|
|
69
|
+
@matching_expression = Regexp.new('\A\s*' + Regexp.escape(options[:x]), true)
|
|
70
|
+
else
|
|
71
|
+
@matching_expression = options[:x]
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
data/test/errata_test.rb
ADDED
data/test/test_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: seamusabshere-errata
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Seamus Abshere
|
|
8
|
+
- Andy Rossmeissl
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2009-08-18 00:00:00 -07:00
|
|
14
|
+
default_executable:
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: activesupport
|
|
18
|
+
type: :runtime
|
|
19
|
+
version_requirement:
|
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
21
|
+
requirements:
|
|
22
|
+
- - ">="
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: "0"
|
|
25
|
+
version:
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: seamusabshere-remote_table
|
|
28
|
+
type: :runtime
|
|
29
|
+
version_requirement:
|
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: "0"
|
|
35
|
+
version:
|
|
36
|
+
description: Correct strings based on remote errata files
|
|
37
|
+
email: seamus@abshere.net
|
|
38
|
+
executables: []
|
|
39
|
+
|
|
40
|
+
extensions: []
|
|
41
|
+
|
|
42
|
+
extra_rdoc_files:
|
|
43
|
+
- LICENSE
|
|
44
|
+
- README.rdoc
|
|
45
|
+
files:
|
|
46
|
+
- .document
|
|
47
|
+
- .gitignore
|
|
48
|
+
- LICENSE
|
|
49
|
+
- README.rdoc
|
|
50
|
+
- Rakefile
|
|
51
|
+
- VERSION
|
|
52
|
+
- errata.gemspec
|
|
53
|
+
- lib/errata.rb
|
|
54
|
+
- lib/erratum.rb
|
|
55
|
+
- lib/erratum/delete.rb
|
|
56
|
+
- lib/erratum/reject.rb
|
|
57
|
+
- lib/erratum/replace.rb
|
|
58
|
+
- lib/erratum/simplify.rb
|
|
59
|
+
- lib/erratum/transform.rb
|
|
60
|
+
- lib/erratum/truncate.rb
|
|
61
|
+
- test/errata_test.rb
|
|
62
|
+
- test/test_helper.rb
|
|
63
|
+
has_rdoc: false
|
|
64
|
+
homepage: http://github.com/seamusabshere/errata
|
|
65
|
+
licenses:
|
|
66
|
+
post_install_message:
|
|
67
|
+
rdoc_options:
|
|
68
|
+
- --charset=UTF-8
|
|
69
|
+
- --line-numbers
|
|
70
|
+
- --inline-source
|
|
71
|
+
require_paths:
|
|
72
|
+
- lib
|
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: "0"
|
|
78
|
+
version:
|
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: "0"
|
|
84
|
+
version:
|
|
85
|
+
requirements: []
|
|
86
|
+
|
|
87
|
+
rubyforge_project:
|
|
88
|
+
rubygems_version: 1.3.5
|
|
89
|
+
signing_key:
|
|
90
|
+
specification_version: 3
|
|
91
|
+
summary: Correct strings based on remote errata files
|
|
92
|
+
test_files:
|
|
93
|
+
- test/errata_test.rb
|
|
94
|
+
- test/test_helper.rb
|