Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #25 from takkii/virtual
Browse files Browse the repository at this point in the history
Virtual branch
  • Loading branch information
takkii authored Sep 24, 2019
2 parents 60c234d + 6518e8c commit 72ccb84
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/prop/all.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def search
three_act = /#{twice}/o

begin
if str.match(three_act) || {}[:match]
if str =~ three_act
printf('%2d : %s', f.lineno, str)
puts ''
end
Expand Down
2 changes: 1 addition & 1 deletion lib/prop/and.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def search
three_act2 = /^(?=.*#{twice})/o

begin
if str.match(three_act2) || {}[:match]
if str =~ three_act2
printf('%2d : %s', f.lineno, str)
puts ''
end
Expand Down
2 changes: 1 addition & 1 deletion lib/prop/mail.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def search
three_act = /^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/o

begin
if str.match(three_act) || {}[:match]
if str =~ three_act
printf('%2d : %s', f.lineno, str)
puts ''
end
Expand Down
2 changes: 1 addition & 1 deletion lib/prop/not.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def search
three_act3 = /^(?!.*#{twice})/o

begin
if str.match(three_act3) || {}[:match]
if str =~ three_act3
printf('%2d : %s', f.lineno, str)
puts ''
end
Expand Down
2 changes: 1 addition & 1 deletion lib/prop/or.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def search
three_act4 = /(#{twice}|#{drive})/o

begin
if str.match(three_act4) || {}[:match]
if str =~ three_act4
printf('%2d : %s', f.lineno, str)
puts ''
end
Expand Down
2 changes: 1 addition & 1 deletion lib/prop/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Encoding.default_internal = 'UTF-8'

module Engine
VERSION = '1.0.12'.toutf8.freeze
VERSION = '1.0.12.1'.toutf8.freeze
end

__END__
2 changes: 1 addition & 1 deletion mini_test/mini_test_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Mini_test file load.
class VersionTest < Minitest::Test
def test_version
assert_equal Engine::VERSION, '1.0.12'
assert_equal Engine::VERSION, '1.0.12.1'
end
end

2 changes: 1 addition & 1 deletion test/test_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class TestVersion < Test::Unit::TestCase
def setup
@versions = Engine::VERSION
@version = '1.0.12'
@version = '1.0.12.1'
end

def test_new
Expand Down

0 comments on commit 72ccb84

Please sign in to comment.