repo
string
commit
string
message
string
diff
string
VsVim/VsVim
8d38a15e6fc0f86df1314dd1b03022eee9e34fcc
Add test: marks after paste.
diff --git a/Test/VimCoreTest/VimBufferTest.cs b/Test/VimCoreTest/VimBufferTest.cs index 8b8149d..c6f99ae 100644 --- a/Test/VimCoreTest/VimBufferTest.cs +++ b/Test/VimCoreTest/VimBufferTest.cs @@ -5,1059 +5,1076 @@ using Microsoft.FSharp.Core; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Edit...
VsVim/VsVim
a9a05cc8ec5de67a884535f143eddab336ac28f3
Fix visual mark test.
diff --git a/Test/VimCoreTest/VimBufferTest.cs b/Test/VimCoreTest/VimBufferTest.cs index 816afed..8b8149d 100644 --- a/Test/VimCoreTest/VimBufferTest.cs +++ b/Test/VimCoreTest/VimBufferTest.cs @@ -36,1025 +36,1025 @@ namespace Vim.UnitTest mode.SetupGet(x => x.ModeKind).Returns(ModeKind.Normal); ...
VsVim/VsVim
4063b902c764e272c8eed9aacb563db5ac51ae8a
Enable test again.
diff --git a/Test/VimCoreTest/VimBufferTest.cs b/Test/VimCoreTest/VimBufferTest.cs index d5d338f..9a6b7df 100644 --- a/Test/VimCoreTest/VimBufferTest.cs +++ b/Test/VimCoreTest/VimBufferTest.cs @@ -4,1034 +4,1036 @@ using Microsoft.FSharp.Collections; using Microsoft.FSharp.Core; using Microsoft.VisualStudio.Text; ...
VsVim/VsVim
11fe6cbbbabfab3653f0d63cdf33ec1976aab592
Format code (review feedback)
diff --git a/Src/VimCore/CommandUtil.fs b/Src/VimCore/CommandUtil.fs index 78f2639..bd6c97f 100644 --- a/Src/VimCore/CommandUtil.fs +++ b/Src/VimCore/CommandUtil.fs @@ -1,694 +1,694 @@ #light namespace Vim open Vim.Modes open Microsoft.VisualStudio.Text open Microsoft.VisualStudio.Text.Operations open ...
VsVim/VsVim
63637fa16b87e154813e803647d84cd6af8a5a6d
Restore caret when using system copy after yank
diff --git a/Src/VimCore/CommonOperations.fs b/Src/VimCore/CommonOperations.fs index aa2baf5..b45e658 100644 --- a/Src/VimCore/CommonOperations.fs +++ b/Src/VimCore/CommonOperations.fs @@ -1708,1028 +1708,1032 @@ type internal CommonOperations let key = extractKey keyPattern line ...
VsVim/VsVim
a3139c671a31aeef6bc6e976f89da0e66f411782
Fix caret top on lines below CodeLens annotations
diff --git a/Src/VimWpf/Implementation/BlockCaret/BlockCaret.cs b/Src/VimWpf/Implementation/BlockCaret/BlockCaret.cs index 34439ad..479b050 100644 --- a/Src/VimWpf/Implementation/BlockCaret/BlockCaret.cs +++ b/Src/VimWpf/Implementation/BlockCaret/BlockCaret.cs @@ -1,846 +1,846 @@ using System; using System.Linq; ...
VsVim/VsVim
bcc6cb780b5bae1562494a54e0210513a2ae14ff
Delete a collapsed region correctly.
diff --git a/Src/VimCore/CommonOperations.fs b/Src/VimCore/CommonOperations.fs index aa2baf5..ec5892d 100644 --- a/Src/VimCore/CommonOperations.fs +++ b/Src/VimCore/CommonOperations.fs @@ -293,1060 +293,1062 @@ type internal CommonOperations member x.GetSpacesToVirtualColumnNumber line columnNumber = Vi...
VsVim/VsVim
a756538a1577f87ed68881f957d21f9c797cf043
API clean up
diff --git a/Src/VimCore/CoreInterfaces.fs b/Src/VimCore/CoreInterfaces.fs index bb6d9ae..70fdfbc 100644 --- a/Src/VimCore/CoreInterfaces.fs +++ b/Src/VimCore/CoreInterfaces.fs @@ -3667,1027 +3667,1032 @@ type InsertCommand = | TextChange.Combination (left, right) -> let leftCommand = InsertComm...
VsVim/VsVim
82352ddf828a2d7ef21b53514ee03a5ad71f563f
When adding or subtracting in visual mode, Skip invalid lines.
diff --git a/Src/VimCore/CommandUtil.fs b/Src/VimCore/CommandUtil.fs index 19e32e3..78f2639 100644 --- a/Src/VimCore/CommandUtil.fs +++ b/Src/VimCore/CommandUtil.fs @@ -1,704 +1,707 @@ #light namespace Vim open Vim.Modes open Microsoft.VisualStudio.Text open Microsoft.VisualStudio.Text.Operations open ...
VsVim/VsVim
54b67c09437b6ef10a27892c54b7f10e4dddee08
Fix UI delay in navigate to
diff --git a/Src/VsVimShared/Implementation/Misc/StandardCommandTarget.cs b/Src/VsVimShared/Implementation/Misc/StandardCommandTarget.cs index 2b81a21..f18633f 100644 --- a/Src/VsVimShared/Implementation/Misc/StandardCommandTarget.cs +++ b/Src/VsVimShared/Implementation/Misc/StandardCommandTarget.cs @@ -1,451 +1,451 @@...
VsVim/VsVim
a11afcd2d1c5b6681710f01594c046b045b2c11f
Use backing line number editor option for VS2017
diff --git a/Src/VimCore/LineNumbersMarginOption.fs b/Src/VimCore/LineNumbersMarginOption.fs new file mode 100644 index 0000000..24d8789 --- /dev/null +++ b/Src/VimCore/LineNumbersMarginOption.fs @@ -0,0 +1,21 @@ +#light + +namespace Vim +open Microsoft.VisualStudio.Text.Editor +open System.ComponentModel.Compos...
VsVim/VsVim
9320812b167c2758c3a94f5b2ff04f677450796f
Unify add and split selection into start
diff --git a/Documentation/Multiple Selections.md b/Documentation/Multiple Selections.md index a66cdd1..7071c55 100644 --- a/Documentation/Multiple Selections.md +++ b/Documentation/Multiple Selections.md @@ -1,97 +1,97 @@ ### Multiple Carets / Multiple Cursors / Multiple Selections If the host supports multipl...
VsVim/VsVim
7d6d478678e6c5a60ba8d3b1f2d972989cf48796
Review feedback (second pass)
diff --git a/Src/VimCore/CaretRegisterMap.fs b/Src/VimCore/CaretRegisterMap.fs index 97a3bc0..e39d79b 100644 --- a/Src/VimCore/CaretRegisterMap.fs +++ b/Src/VimCore/CaretRegisterMap.fs @@ -1,123 +1,123 @@ namespace Vim open System.Collections.Generic /// Mutable caret index object type internal CaretInd...
VsVim/VsVim
bbf1be1b0eb64035831dac1e33986f98654831fc
Map anchor point to current snapshot
diff --git a/Src/VimCore/CommonOperations.fs b/Src/VimCore/CommonOperations.fs index 652f96f..aa2baf5 100644 --- a/Src/VimCore/CommonOperations.fs +++ b/Src/VimCore/CommonOperations.fs @@ -2204,754 +2204,754 @@ type internal CommonOperations member x.RaiseSearchResultMessage searchResult = CommonUtil.Ra...
VsVim/VsVim
4bbe13cea84deefa8b41f6a0c94d6ebf7bbbd9d5
Handle special case text input in normal and visual modes
diff --git a/Src/VimCore/KeyInput.fs b/Src/VimCore/KeyInput.fs index fdd5830..c65c2e5 100644 --- a/Src/VimCore/KeyInput.fs +++ b/Src/VimCore/KeyInput.fs @@ -1,491 +1,501 @@ #light namespace Vim open System.Runtime.InteropServices [<Sealed>] type KeyInput ( _key: VimKey, _modK...
VsVim/VsVim
652382a7905c607c530822db5e717bed3c8463fb
Improve variable name
diff --git a/Src/VimCore/RegisterMap.fs b/Src/VimCore/RegisterMap.fs index 2ba96d2..e8c032d 100644 --- a/Src/VimCore/RegisterMap.fs +++ b/Src/VimCore/RegisterMap.fs @@ -1,135 +1,135 @@ #light namespace Vim /// IRegisterValueBacking implementation for the clipboard type ClipboardRegisterValueBacking (_d...
VsVim/VsVim
7c3008739d049685989c7c28075e83b6b4b20c8d
Use VsVim margin for non-relative line numbers
diff --git a/Src/VimCore/LineNumbersMarginOptions.fs b/Src/VimCore/LineNumbersMarginOptions.fs deleted file mode 100644 index 24d8789..0000000 --- a/Src/VimCore/LineNumbersMarginOptions.fs +++ /dev/null @@ -1,21 +0,0 @@ -#light - -namespace Vim -open Microsoft.VisualStudio.Text.Editor -open System.ComponentModel...
sukhitambar/testapp
807194a00e030adbfd4a8afe062ea03acd40ac3c
[Misc] new changes
diff --git a/second.rb b/second.rb index bd86ee2..4ca99d9 100644 --- a/second.rb +++ b/second.rb @@ -1 +1,3 @@ -sdafsaf \ No newline at end of file +sdafsaf sdkfhaslk +sdf askjdfa +sdf sa \ No newline at end of file
sukhitambar/testapp
d0da042b49fc57a9921661eff28ea4559434c31e
[Msc] sdfsdf
diff --git a/second.rb b/second.rb new file mode 100644 index 0000000..bd86ee2 --- /dev/null +++ b/second.rb @@ -0,0 +1 @@ +sdafsaf \ No newline at end of file
sukhitambar/testapp
f042211f024696da03e4bc8e8218a4adbd07e99a
[misc] temp
diff --git a/temp.txt b/temp.txt new file mode 100644 index 0000000..14e1af7 --- /dev/null +++ b/temp.txt @@ -0,0 +1 @@ +This is temp file \ No newline at end of file
allomov/WaveRegions
925842b6e1cb4f6835a45d34231fdb69f1836bab
There is opportunity to set regions and markers inside wav files. Various programs use it to perform time dependent data. This project helps to convert information about regiuons from wave file created in Sound Forge to text file, wich is used by Waveserfer to perform transcription.
diff --git a/RegionTypeConverter.pro b/RegionTypeConverter.pro new file mode 100644 index 0000000..6733703 --- /dev/null +++ b/RegionTypeConverter.pro @@ -0,0 +1,24 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2010-03-01T12:57:49 +# +#----------------------------------------...
albertarvesu/customphpfw
fa64c202f345b52b585010115f2067692ea3fcc5
added index page
diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..e69de29
albertarvesu/customphpfw
14eca2bb499f51aff7454482e9684973976012ea
modified model
diff --git a/model/base_model.php b/model/base_model.php index dd2187c..4bed98a 100644 --- a/model/base_model.php +++ b/model/base_model.php @@ -1,85 +1,80 @@ <?php require_once dirname(__FILE__).'/../config/database.php'; require_once dirname(__FILE__).'/../util/database.php'; require_once dirname(_...
albertarvesu/customphpfw
c44dbd01fc578f1a1ee4895514c6b319bc9302ea
modified config
diff --git a/config/database.php b/config/database.php index 2f56407..1f8644e 100644 --- a/config/database.php +++ b/config/database.php @@ -1,6 +1,6 @@ <?php # define("HOST", "localhost"); define("HOST", "127.0.0.1"); - define("USERNAME", "root"); - define("PASSWORD", "mysql"); - define("DBNAME...
albertarvesu/customphpfw
b55cd995901d99d6bbd35e4be49a304b8ecb2f57
snippets of my custom php framework
diff --git a/README b/README index e69de29..616f08e 100644 --- a/README +++ b/README @@ -0,0 +1 @@ +Contains some snippets and the structure on how I am doing PHP web development. This is not a fully functional web framework. diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..2f5...
machida/hamcutlet-extension
dcc29f20aae5a6d2079d8f1f5d63fbacffe0fdc8
アイコン修正
diff --git a/icon.png b/icon.png index 103ff36..bb7f3f2 100644 Binary files a/icon.png and b/icon.png differ
machida/hamcutlet-extension
86ad3adcf6abe33d7998c17935680b7fe996c56b
hamcutlet chrome extension.
diff --git a/background.html b/background.html new file mode 100644 index 0000000..bae14b9 --- /dev/null +++ b/background.html @@ -0,0 +1,27 @@ +<html> +<head> +<script> + +function openTab(v) { + t = "http://hamcutlet.fjord.jp/?url=" + v; + chrome.tabs.create({url: t}); +} + +chrome.browserAction.onClicked.addLi...
xto/SUTA
ae505fd70fda55d10a83db63f23555ae0dd2c5a5
Fixed a typo...
diff --git a/README b/README index 7ad5203..debb457 100644 --- a/README +++ b/README @@ -1,31 +1,31 @@ This is just a preliminary commit of an idea for a DSL for PHPUnit. We needed something simple to write some tests and couldn't find anything to suit our needs. What we're trying to achieve is a simple syntax ...
xto/SUTA
2e3799cf74722715173513426b15b690d2df8179
Fixed a issue with shouldContain adn added shouldBeEmpty
diff --git a/expectations/ExpectationsExpectations.php b/expectations/ExpectationsExpectations.php index 654357c..f8c51e4 100644 --- a/expectations/ExpectationsExpectations.php +++ b/expectations/ExpectationsExpectations.php @@ -1,288 +1,375 @@ <?php require_once 'src/Expectations.php'; class ExpectationsExp...
xto/SUTA
e64864bc732ad24397b231cc4c78ac6bc30f42cd
Downgraded required PHP Version .
diff --git a/package.xml b/package.xml index 8c5f385..446336f 100644 --- a/package.xml +++ b/package.xml @@ -1,61 +1,61 @@ <?xml version="1.0" encoding="UTF-8"?> <package packagerversion="0.1.7" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http:/...
xto/SUTA
3deb27ac5b8ab6b56f8755350d2ddd50157cb60c
updating package.xml to reflect upcomiong package Please enter the commit message for your changes. Lines starting
diff --git a/package.xml b/package.xml index f957d99..8c5f385 100644 --- a/package.xml +++ b/package.xml @@ -1,61 +1,61 @@ <?xml version="1.0" encoding="UTF-8"?> -<package packagerversion="0.1.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http:/...
xto/SUTA
adf7e9fd680f8b873ea3342e9e71266322a889f5
Converted constant into string like they should of been Please enter the commit message for your changes. Lines starting
diff --git a/src/TestSubject.php b/src/TestSubject.php index 2460a09..65ab0cc 100644 --- a/src/TestSubject.php +++ b/src/TestSubject.php @@ -1,55 +1,55 @@ l<?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is free software: you can redistribute it and/or modify it und...
xto/SUTA
331f497bcadf5b56772a626e252f1f6085719635
Corrected class to expectations. PHP converted the constant intro a string in previous version which raised a warning.
diff --git a/src/TestSubject.php b/src/TestSubject.php index aa73ba9..2460a09 100644 --- a/src/TestSubject.php +++ b/src/TestSubject.php @@ -1,55 +1,55 @@ -<?php +l<?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is free software: you can redistribute it and/or modify ...
xto/SUTA
dedd63038364e81d56b73f26e84b6a608b646560
corrected include path
diff --git a/src/TestSubject.php b/src/TestSubject.php index 16bb17e..aa73ba9 100644 --- a/src/TestSubject.php +++ b/src/TestSubject.php @@ -1,55 +1,55 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is free software: you can redistribute it and/or modify it unde...
xto/SUTA
5ee4aa74787871a474ea374022e48da992b1decc
Added uncheck action and expectation plsu their tests.
diff --git a/expectations/ExpectationsSuite.php b/expectations/ExpectationsSuite.php index 8d0a0a3..759f800 100644 --- a/expectations/ExpectationsSuite.php +++ b/expectations/ExpectationsSuite.php @@ -1,43 +1,43 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is fr...
xto/SUTA
7b702eb79ddc1f23570147efdfb00f2df62cd96f
Added a withValue expectation
diff --git a/configuration/Configuration.php b/configuration/Configuration.php index d2e93ad..95f77f9 100644 --- a/configuration/Configuration.php +++ b/configuration/Configuration.php @@ -1,11 +1,11 @@ <?php class Configuration { - private $SUTA_path = "/home/xto/projects/SUTA/"; + private $SUTA_path = "/home/smp...
xto/SUTA
f2b6d1d966ba2a1f83138f7ec1a7fb94235861a7
Fixed a bad include...
diff --git a/src/selenium_helper/SeleniumExecutionContext.php b/src/selenium_helper/SeleniumExecutionContext.php index 628c79d..b66c70c 100644 --- a/src/selenium_helper/SeleniumExecutionContext.php +++ b/src/selenium_helper/SeleniumExecutionContext.php @@ -1,89 +1,89 @@ <?php - require_once 'src/selenium_helper/S...
xto/SUTA
23acd4118c897db3a9cf471c74ba76ddadee8c30
Added negative tests cases for waitForAjax (jQuery and Prototype)
diff --git a/expectations/selenium_expectations/SeleniumDrivenUserExpectations.php b/expectations/selenium_expectations/SeleniumDrivenUserExpectations.php index b567421..0acc492 100644 --- a/expectations/selenium_expectations/SeleniumDrivenUserExpectations.php +++ b/expectations/selenium_expectations/SeleniumDrivenUser...
xto/SUTA
9f12e41e62d6564545ef765cc41d7e80df7ff915
Added a test for prototype wait for ajax
diff --git a/configuration/Configuration.php b/configuration/Configuration.php index 95f77f9..d2e93ad 100644 --- a/configuration/Configuration.php +++ b/configuration/Configuration.php @@ -1,11 +1,11 @@ <?php class Configuration { - private $SUTA_path = "/home/smpdev/SUTA/"; + private $SUTA_path = "/home/xto/proje...
xto/SUTA
af52dec0210206e67cc819ce15e59244102c6e8c
Added waitforAjax with jQuery... need tests for Ajax with prototype
diff --git a/configuration/Configuration.php b/configuration/Configuration.php index 254640e..95f77f9 100644 --- a/configuration/Configuration.php +++ b/configuration/Configuration.php @@ -1,11 +1,11 @@ <?php class Configuration { - private $SUTA_path = "/home/frank/projects/SUTA/"; - private $selenium_test_page_p...
xto/SUTA
4d4ce73eefad67fe59e17702051e90e2a1c5626d
adding missing static attribute after refactoring of seleniumDrivenUserExpections
diff --git a/Testing/Selenium.php b/Testing/Selenium.php new file mode 100644 index 0000000..d101bfd --- /dev/null +++ b/Testing/Selenium.php @@ -0,0 +1,2755 @@ +<?php +/** Copyright 2006 ThoughtWorks, Inc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in co...
xto/SUTA
52dd6e7ea63d81b16fa4021c1bfa61459c074be2
Adding configuration.
diff --git a/configuration/Configuration.php b/configuration/Configuration.php new file mode 100644 index 0000000..254640e --- /dev/null +++ b/configuration/Configuration.php @@ -0,0 +1,11 @@ +<?php + class Configuration { + private $SUTA_path = "/home/frank/projects/SUTA/"; + private $selenium_test_page_path = "expe...
xto/SUTA
9b80a36a03af8cddcb2228851345410263d19968
Added should raise expectation.
diff --git a/expectations/ExpectationsExpectations.php b/expectations/ExpectationsExpectations.php index f5d9891..a45f70e 100644 --- a/expectations/ExpectationsExpectations.php +++ b/expectations/ExpectationsExpectations.php @@ -1,222 +1,253 @@ <?php require_once 'src/Expectations.php'; - + class Expectat...
xto/SUTA
a512ba5d0bec64b2009a96761494fe9fe269c00a
Fixed a copy paste error in the message on shouldNotSeeFailure.. my bad... won't do it again
diff --git a/src/selenium_helper/SeleniumExpectations.php b/src/selenium_helper/SeleniumExpectations.php index 2ca7e34..53cde06 100644 --- a/src/selenium_helper/SeleniumExpectations.php +++ b/src/selenium_helper/SeleniumExpectations.php @@ -1,69 +1,69 @@ <?php class SeleniumExpectations { private $__seleni...
xto/SUTA
2e3534f463801f44f93936c3c0661922918fbfff
changed package version
diff --git a/.externalToolBuilders/PHPUNIT-AUTOTEST.launch b/.externalToolBuilders/PHPUNIT-AUTOTEST.launch index efffb4d..d9d5744 100644 --- a/.externalToolBuilders/PHPUNIT-AUTOTEST.launch +++ b/.externalToolBuilders/PHPUNIT-AUTOTEST.launch @@ -1,9 +1,10 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <laun...
xto/SUTA
9a1e574373174f94f863a1f8c3b606f1a960c6b3
Added some expectations and of course their tests
diff --git a/expectations/ExpectationsExpectations.php b/expectations/ExpectationsExpectations.php index 534e1ba..f5d9891 100644 --- a/expectations/ExpectationsExpectations.php +++ b/expectations/ExpectationsExpectations.php @@ -1,155 +1,222 @@ <?php require_once 'src/Expectations.php'; - + class Expectation...
xto/SUTA
a585d8a1703569c1b939a3ad2d16cfeb01c9c0ae
Fixed destroy sequence,updated package/xml to reflect the refactoring
diff --git a/expectations/ExpectationsSuite.php b/expectations/ExpectationsSuite.php index 20fb299..4ca3c80 100644 --- a/expectations/ExpectationsSuite.php +++ b/expectations/ExpectationsSuite.php @@ -1,42 +1,41 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is f...
xto/SUTA
8b3c897e6157fe8ea1571075919531c423f1faf5
Corrected typo.
diff --git a/src/selenium_helper/SeleniumActions.php b/src/selenium_helper/SeleniumActions.php index c5181b0..5420492 100644 --- a/src/selenium_helper/SeleniumActions.php +++ b/src/selenium_helper/SeleniumActions.php @@ -1,96 +1,96 @@ <?php class SeleniumActions { private $__seleniumExecutionContex...
xto/SUTA
5a37c588ddae64bc8657ca4d3b5cf5abaa0f8ace
Major refactoring of methods to split concerns in different classes.
diff --git a/expectations/ExpectationsSuite.php b/expectations/ExpectationsSuite.php index 5d5eb32..20fb299 100644 --- a/expectations/ExpectationsSuite.php +++ b/expectations/ExpectationsSuite.php @@ -1,42 +1,42 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is f...
xto/SUTA
89c55cbaec1b8386a2b7a5ca8c2c949453d51aaa
Partial refactor... not working yet
diff --git a/expectations/ExpectationsSuite.php b/expectations/ExpectationsSuite.php index 504e583..5d5eb32 100644 --- a/expectations/ExpectationsSuite.php +++ b/expectations/ExpectationsSuite.php @@ -1,42 +1,42 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is f...
xto/SUTA
079075299a870ea88ce9bb205005333daddf03d8
Refactored the selenium test subject part 1
diff --git a/expectations/selenium_expectations/selenium_test_page.html b/expectations/selenium_expectations/selenium_test_page.html index c27f30c..304d042 100644 --- a/expectations/selenium_expectations/selenium_test_page.html +++ b/expectations/selenium_expectations/selenium_test_page.html @@ -1,22 +1,25 @@ <!DOCTYP...
xto/SUTA
0cd329f18d972b777173851e3336d145e0ca8d35
Changed the shouldEqual to shouldContain for withText
diff --git a/src/selenium_helper/SeleniumTestSubject.php b/src/selenium_helper/SeleniumTestSubject.php index c2cb7ed..0a6c733 100644 --- a/src/selenium_helper/SeleniumTestSubject.php +++ b/src/selenium_helper/SeleniumTestSubject.php @@ -1,129 +1,129 @@ <?php require_once 'Testing/Selenium.php'; require_once dirnam...
xto/SUTA
c14532e462ba9d65acbf93bc985211e8146f9a06
Added shouldContain expectation
diff --git a/src/Expectations.php b/src/Expectations.php index 2e8631e..d0db76e 100644 --- a/src/Expectations.php +++ b/src/Expectations.php @@ -1,52 +1,57 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is free software: you can redistribute it and/or modify ...
xto/SUTA
873925b630aadc0d6651053b8cf04ec85c43267b
Fixed a typo
diff --git a/expectations/ExpectationsExpectations.php b/expectations/ExpectationsExpectations.php index 5d53e9a..534e1ba 100644 --- a/expectations/ExpectationsExpectations.php +++ b/expectations/ExpectationsExpectations.php @@ -1,155 +1,155 @@ <?php require_once 'src/Expectations.php'; class ExpectationsE...
xto/SUTA
3755bb0c97b79b7ba0971ecbae3e07844bd6f724
Added small test for shouldContain expectation.
diff --git a/expectations/ExpectationsExpectations.php b/expectations/ExpectationsExpectations.php index 32a6f03..5d53e9a 100644 --- a/expectations/ExpectationsExpectations.php +++ b/expectations/ExpectationsExpectations.php @@ -1,140 +1,155 @@ <?php require_once 'src/Expectations.php'; class ExpectationsE...
xto/SUTA
6481e112ff7be659cb18cbb0aa5ebbafc33cee52
Added shouldBeOnPage($expected_url) function
diff --git a/src/selenium_helper/SeleniumTestSubject.php b/src/selenium_helper/SeleniumTestSubject.php index b6b8117..c2cb7ed 100644 --- a/src/selenium_helper/SeleniumTestSubject.php +++ b/src/selenium_helper/SeleniumTestSubject.php @@ -1,125 +1,129 @@ <?php require_once 'Testing/Selenium.php'; require_once dirnam...
xto/SUTA
7c61630221d6dbd7b185ec336b9d929f7fd9a892
added pear package info
diff --git a/package.xml b/package.xml new file mode 100644 index 0000000..a3ae139 --- /dev/null +++ b/package.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<package packagerversion="0.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi=...
xto/SUTA
d366f0271e9e01d7b99cd46f6ea5f2603ad69568
Made the web site tolerable to the human eye.
diff --git a/index.html b/index.html index 5cf2733..cddb3b2 100644 --- a/index.html +++ b/index.html @@ -1,83 +1,83 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta h...
xto/SUTA
c7f11e1ffe2d66e560de1642ad6cdb90b0c5a03a
Made the site at least tolerable for the human eye
diff --git a/index.html b/index.html index 787bedc..5cf2733 100644 --- a/index.html +++ b/index.html @@ -1,84 +1,83 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta h...
xto/SUTA
4e76026f66d4e4100c2fdc3a650dd2ef0822a7a2
First pages commit
diff --git a/index.html b/index.html new file mode 100644 index 0000000..03f9801 --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +My GitHub Page
xto/SUTA
ceb89bcb3c61074e066e3197a7a27c3d396a2479
github generated gh-pages branch
diff --git a/index.html b/index.html new file mode 100644 index 0000000..787bedc --- /dev/null +++ b/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head>...
xto/SUTA
86cd6b0b0b43786c16d7c83091085f9bacfa7a1f
Added a bunch of selenium expectations. List is not complete and may require refactoring in a little while
diff --git a/expectations/ExpectationsSuite.php b/expectations/ExpectationsSuite.php index 4389585..504e583 100644 --- a/expectations/ExpectationsSuite.php +++ b/expectations/ExpectationsSuite.php @@ -1,39 +1,42 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau This program is f...
xto/SUTA
2e52c9bab30af2e2df1daa4d3a3c6c70ccde92cd
Added basic functionality for selenium
diff --git a/README b/README index 2bd033e..0cb62d5 100644 --- a/README +++ b/README @@ -1,30 +1,30 @@ This is just a preliminary commit of an idea for a DSL for PHPUnit. We needed something simple to write some tests and couldn't find anything to suit our needs. What we're trying to achieve is a simple syntax ...
xto/SUTA
cb15db8759d4239d9ad3874c05c8c4c6975e33e5
Added a .gitingore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d4bfcf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +nohup.out diff --git a/nohup.out b/nohup.out deleted file mode 100644 index e69de29..0000000
xto/SUTA
1d08d7db662bf202b0568af23534b55283f91148
Updating readme wih text for BDD aspect of add-on
diff --git a/README b/README index 6c3e9fe..9bb5490 100644 --- a/README +++ b/README @@ -1,18 +1,30 @@ This is just a preliminary commit of an idea for a DSL for PHPUnit. We needed siomething simple to write some tests and couldn't find anything to suit our needs. What we're trying to achieve is a simple syntax...
xto/SUTA
14249540108ab0af271a5f51f4a9bdb12a3ce662
Added basic selenium helper object
diff --git a/.buildpath b/.buildpath index 09d953e..f68a211 100644 --- a/.buildpath +++ b/.buildpath @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <buildpath> <buildpathentry kind="src" path=""/> <buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/> - <buildpathentry external="true" kind="lib...
xto/SUTA
9068d6482af710ebf86792515f89f893381ec582
Added some meat to the README
diff --git a/README b/README index 0dab30d..6c3e9fe 100644 --- a/README +++ b/README @@ -1,3 +1,18 @@ -This is just a preliminary commit of an idea for a DSL for PHPUnit. We needed siomething simple to write some tests and couldn't find anything to suit our needs. +This is just a preliminary commit of an idea for a DSL...
xto/SUTA
c082dbe3abae6a3a039033c84e330869c2768880
Added a few asserts for null and not null
diff --git a/.externalToolBuilders/PHPUNIT-AUTOTEST.launch b/.externalToolBuilders/PHPUNIT-AUTOTEST.launch index 34a3323..efffb4d 100644 --- a/.externalToolBuilders/PHPUNIT-AUTOTEST.launch +++ b/.externalToolBuilders/PHPUNIT-AUTOTEST.launch @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launc...
xto/SUTA
a9d8c5e35c9245132f19033974b824067eb7e77d
added partial expectations for null and not null
diff --git a/expectations/ExpectationsExpectations.php b/expectations/ExpectationsExpectations.php index 6fe7883..0c85062 100644 --- a/expectations/ExpectationsExpectations.php +++ b/expectations/ExpectationsExpectations.php @@ -1,97 +1,120 @@ <?php require_once 'src/Expectations.php'; class ExpectationsEx...
xto/SUTA
0759fac649c73818376807c5660a51baa5e939cf
Removed user specific autotest configuration
diff --git a/.externalToolBuilders/PHPUNIT-AUTOTEST.launch b/.externalToolBuilders/PHPUNIT-AUTOTEST.launch index f80e933..34a3323 100644 --- a/.externalToolBuilders/PHPUNIT-AUTOTEST.launch +++ b/.externalToolBuilders/PHPUNIT-AUTOTEST.launch @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launc...
xto/SUTA
060e4c97bf23b53502b873b54ca1142aba7dbb33
Refactored test method names
diff --git a/expectations/TestSubjectExpectations.php b/expectations/TestSubjectExpectations.php index f7686ca..28b8e92 100644 --- a/expectations/TestSubjectExpectations.php +++ b/expectations/TestSubjectExpectations.php @@ -1,65 +1,63 @@ <?php /* Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau ...
xto/SUTA
b262bdca7450789a22878c889961ee125d7db91c
Refactoring project stucture to have a test project.
diff --git a/.buildpath b/.buildpath new file mode 100644 index 0000000..09d953e --- /dev/null +++ b/.buildpath @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<buildpath> + <buildpathentry kind="src" path=""/> + <buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/> + <buildpathentry external="true...
xto/SUTA
e834dfa5f1ef0d5f56d22fae5633a569a85a6af1
Added licensing disclaimer and gpl copy
diff --git a/BDDAsserts.php b/BDDAsserts.php index 6a0c579..130f9d5 100644 --- a/BDDAsserts.php +++ b/BDDAsserts.php @@ -1,26 +1,42 @@ <?php +/* + Copyright 2010 Nicholas Lemay, Xavier Tô, Francis Falardeau + This program is free software: you can redistribute it and/or modify + it under the terms of the G...
smtlaissezfaire/hopcroft
593c932c5785464a7ae66fe047d236a567d32172
Fix a comment
diff --git a/lib/hopcroft/regex/regex_parser.treetop b/lib/hopcroft/regex/regex_parser.treetop index dcd2667..10c4435 100644 --- a/lib/hopcroft/regex/regex_parser.treetop +++ b/lib/hopcroft/regex/regex_parser.treetop @@ -1,168 +1,168 @@ # # This grammar is taken from GNU's grep grammar, with slight modifications. It...
smtlaissezfaire/hopcroft
a25e4fcee379aa72886cce2eb051d72baac19d7b
Whitespace cleanup
diff --git a/README.rdoc b/README.rdoc index 7bdc75e..3b13f22 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,35 +1,35 @@ = Hopcroft A library for dealing with regular languages: Regexes and State Machines. == Example If you can understand the following, welcome to the club! ruby-1.8.6-p383 > Hopcroft::...
smtlaissezfaire/hopcroft
8e627c1bc18ddbdc9b628a5fe1662c8e258081cf
Remove require 'rubygems'
diff --git a/script/boot.rb b/script/boot.rb index 6fdba13..fc9ab3b 100644 --- a/script/boot.rb +++ b/script/boot.rb @@ -1,12 +1,11 @@ def load_hopcroft! - require "rubygems" reload! include Hopcroft end def reload! load "lib/hopcroft.rb" end load_hopcroft! diff --git a/spec/spec_helper.rb b/spec/s...
smtlaissezfaire/hopcroft
337979cf1914208584744d98162628b2505e359c
use regex compilation in the test suite
diff --git a/spec/hopcoft/integration_spec.rb b/spec/hopcoft/integration_spec.rb index 5f46fc2..b2d1b60 100644 --- a/spec/hopcoft/integration_spec.rb +++ b/spec/hopcoft/integration_spec.rb @@ -1,173 +1,173 @@ require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") module Hopcroft describe "Integrati...
smtlaissezfaire/hopcroft
c2fc1aa03007bed3036038c1feaaab3ee2eec124
Override to_nfa, not to_machine on subclasses of Regex::Base. Don't alias_method - call to_nfa on Base class so that overriding to_nfa/to_machine works consistently.
diff --git a/lib/hopcroft/regex/base.rb b/lib/hopcroft/regex/base.rb index cc3aa01..e0acb12 100644 --- a/lib/hopcroft/regex/base.rb +++ b/lib/hopcroft/regex/base.rb @@ -1,60 +1,62 @@ module Hopcroft module Regex class Base def initialize(expr) @expression = expr end attr_read...
smtlaissezfaire/hopcroft
593eda0f9e56a94575d00dcf4fce54decc83f053
Add regex compilation
diff --git a/lib/hopcroft/regex.rb b/lib/hopcroft/regex.rb index 725a7e1..2f7fc1c 100644 --- a/lib/hopcroft/regex.rb +++ b/lib/hopcroft/regex.rb @@ -1,34 +1,40 @@ require "treetop" module Hopcroft module Regex SPECIAL_CHARS = [ DOT = ".", PLUS = "+", QUESTION = "...
smtlaissezfaire/hopcroft
ab0f66c0a135208b0d421f6ca08e5f0467753df8
Add --format profile to spec.opts
diff --git a/spec/spec.opts b/spec/spec.opts index 342faa2..55716ef 100644 --- a/spec/spec.opts +++ b/spec/spec.opts @@ -1,2 +1,3 @@ --color ---debugger \ No newline at end of file +--debugger +--format profile \ No newline at end of file
smtlaissezfaire/hopcroft
7b1b1f2341507d7d75c485411660b4169b4bf504
Speed up test suite time (and nfa->dfa conversion time) by caching the symbols in the nfa.
diff --git a/lib/hopcroft/converters/nfa_to_dfa_converter.rb b/lib/hopcroft/converters/nfa_to_dfa_converter.rb index 0a27dec..d6bc380 100644 --- a/lib/hopcroft/converters/nfa_to_dfa_converter.rb +++ b/lib/hopcroft/converters/nfa_to_dfa_converter.rb @@ -1,81 +1,81 @@ module Hopcroft module Converters class NfaT...
smtlaissezfaire/hopcroft
d6af05bd08c87be55f44bb2ecee617549ac94410
Refactoring
diff --git a/lib/hopcroft/converters.rb b/lib/hopcroft/converters.rb index 3a9a05d..ce4b029 100644 --- a/lib/hopcroft/converters.rb +++ b/lib/hopcroft/converters.rb @@ -1,7 +1,8 @@ module Hopcroft module Converters extend Using + using :NfaStateCollection using :NfaToDfaConverter end end \ No...
smtlaissezfaire/hopcroft
7d079c112a656e0efac5325e1f4bdc36988e4928
Set start states appropriately on NFA->DFA conversion. (This only affects the display when using the state table w/ the terminal-table gem)
diff --git a/lib/hopcroft/converters/nfa_to_dfa_converter.rb b/lib/hopcroft/converters/nfa_to_dfa_converter.rb index 0dfbc54..e9328c3 100644 --- a/lib/hopcroft/converters/nfa_to_dfa_converter.rb +++ b/lib/hopcroft/converters/nfa_to_dfa_converter.rb @@ -1,105 +1,110 @@ module Hopcroft module Converters class Nf...
smtlaissezfaire/hopcroft
acd1f10b4d1ba9439b8863c4e162868930c26d40
Always set final states in nfa->dfa conversion (not only for a target). Refactor.
diff --git a/lib/hopcroft/converters/nfa_to_dfa_converter.rb b/lib/hopcroft/converters/nfa_to_dfa_converter.rb index a9b9673..0dfbc54 100644 --- a/lib/hopcroft/converters/nfa_to_dfa_converter.rb +++ b/lib/hopcroft/converters/nfa_to_dfa_converter.rb @@ -1,105 +1,105 @@ module Hopcroft module Converters class Nf...
smtlaissezfaire/hopcroft
368e7639dbb7c13bf6bb3336654166d4e4816b42
Add --debugger flag to spec.opts
diff --git a/spec/spec.opts b/spec/spec.opts index 5052887..342faa2 100644 --- a/spec/spec.opts +++ b/spec/spec.opts @@ -1 +1,2 @@ ---color \ No newline at end of file +--color +--debugger \ No newline at end of file
smtlaissezfaire/hopcroft
a693fac69717d7a80f542deffd70387f1912dbfb
Use dfa's, not nfa when converting a state machine to a state table
diff --git a/lib/hopcroft/regex/base.rb b/lib/hopcroft/regex/base.rb index 100babc..35b4ef2 100644 --- a/lib/hopcroft/regex/base.rb +++ b/lib/hopcroft/regex/base.rb @@ -1,52 +1,56 @@ module Hopcroft module Regex class Base def initialize(expr) @expression = expr end attr_read...
smtlaissezfaire/hopcroft
fab0d7c8f75934a6f38c760dd95e335071ac3a66
Revert "Use epsilon_closure, not [start_state]"
diff --git a/lib/hopcroft/converters/nfa_to_dfa_converter.rb b/lib/hopcroft/converters/nfa_to_dfa_converter.rb index ffefd93..a9b9673 100644 --- a/lib/hopcroft/converters/nfa_to_dfa_converter.rb +++ b/lib/hopcroft/converters/nfa_to_dfa_converter.rb @@ -1,105 +1,105 @@ module Hopcroft module Converters class Nf...
smtlaissezfaire/hopcroft
38512bed9a65a54a1a6170ea6d89154ace33ff18
use concat instead of push *
diff --git a/lib/hopcroft/machine/nfa_transition_table.rb b/lib/hopcroft/machine/nfa_transition_table.rb index d883544..73eab76 100644 --- a/lib/hopcroft/machine/nfa_transition_table.rb +++ b/lib/hopcroft/machine/nfa_transition_table.rb @@ -1,88 +1,84 @@ module Hopcroft module Machine class NfaTransitionTable ...
smtlaissezfaire/hopcroft
4d353acb7ec6d1c4fe5b6ec0fb053e59385c181d
Use epsilon_closure, not [start_state]
diff --git a/lib/hopcroft/converters/nfa_to_dfa_converter.rb b/lib/hopcroft/converters/nfa_to_dfa_converter.rb index a9b9673..ffefd93 100644 --- a/lib/hopcroft/converters/nfa_to_dfa_converter.rb +++ b/lib/hopcroft/converters/nfa_to_dfa_converter.rb @@ -1,105 +1,105 @@ module Hopcroft module Converters class Nf...
smtlaissezfaire/hopcroft
a586c10584dec4a3921881109a069a6ca0378799
Make states appropriately final in NFA -> DFA conversion
diff --git a/lib/hopcroft/converters/nfa_to_dfa_converter.rb b/lib/hopcroft/converters/nfa_to_dfa_converter.rb index a33e935..a9b9673 100644 --- a/lib/hopcroft/converters/nfa_to_dfa_converter.rb +++ b/lib/hopcroft/converters/nfa_to_dfa_converter.rb @@ -1,95 +1,105 @@ module Hopcroft module Converters class Nfa...
smtlaissezfaire/hopcroft
86ba5a92075c80cb94b22774c13c23d6cdafbb8f
Exclude gems when rcov'ing
diff --git a/tasks/rspec.rake b/tasks/rspec.rake index 037b6e5..a7e743e 100644 --- a/tasks/rspec.rake +++ b/tasks/rspec.rake @@ -1,20 +1,20 @@ require 'spec/rake/spectask' require 'spec/rake/verify_rcov' desc 'Run the specs' Spec::Rake::SpecTask.new do |t| t.warning = false t.spec_opts = ["--color"] end ...
smtlaissezfaire/hopcroft
e9ff11c22be2b50a6e47b6673de71a4a25b0c97e
Add alias for now
diff --git a/lib/hopcroft/regex/base.rb b/lib/hopcroft/regex/base.rb index aa748de..100babc 100644 --- a/lib/hopcroft/regex/base.rb +++ b/lib/hopcroft/regex/base.rb @@ -1,50 +1,52 @@ module Hopcroft module Regex class Base def initialize(expr) @expression = expr end attr_read...
smtlaissezfaire/hopcroft
e21ab63fc2146943e1053190dbfaaac5a01affd8
Add to README
diff --git a/README.rdoc b/README.rdoc index c366f92..7bdc75e 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,4 +1,35 @@ = Hopcroft A library for dealing with regular languages: Regexes and State Machines. +== Example + +If you can understand the following, welcome to the club! + + ruby-1.8.6-p383 > Hopcroft::R...
smtlaissezfaire/hopcroft
e6314e12a7ec0c0e9729b8c99b35f6d0e38dc818
Rename Regex.compile to Regex.parse
diff --git a/lib/hopcroft/regex.rb b/lib/hopcroft/regex.rb index 308919c..725a7e1 100644 --- a/lib/hopcroft/regex.rb +++ b/lib/hopcroft/regex.rb @@ -1,34 +1,34 @@ require "treetop" module Hopcroft module Regex SPECIAL_CHARS = [ DOT = ".", PLUS = "+", QUESTION = "...
smtlaissezfaire/hopcroft
945c35a130262274e404ef6c22f64c72d0611c83
Display DFA's properly
diff --git a/lib/hopcroft/machine/table_displayer.rb b/lib/hopcroft/machine/table_displayer.rb index f52c205..0067843 100644 --- a/lib/hopcroft/machine/table_displayer.rb +++ b/lib/hopcroft/machine/table_displayer.rb @@ -1,67 +1,71 @@ require "terminal-table" require "facets/enumerable/map_with_index" module Hopcr...
smtlaissezfaire/hopcroft
1e2165fd61dc4bb400fb973f03354f74b7da06c5
Add StateMachine#to_dfa
diff --git a/lib/hopcroft/machine/state_machine.rb b/lib/hopcroft/machine/state_machine.rb index fa15b83..ebb9701 100644 --- a/lib/hopcroft/machine/state_machine.rb +++ b/lib/hopcroft/machine/state_machine.rb @@ -1,48 +1,52 @@ module Hopcroft module Machine class StateMachine def initialize(start_state ...
smtlaissezfaire/hopcroft
6f52bbdc0be0188e3daa4592ede7a02d8dbf1643
Alias state_table => nfa_state_table
diff --git a/lib/hopcroft/machine/state_machine.rb b/lib/hopcroft/machine/state_machine.rb index 115e3e2..fa15b83 100644 --- a/lib/hopcroft/machine/state_machine.rb +++ b/lib/hopcroft/machine/state_machine.rb @@ -1,46 +1,48 @@ module Hopcroft module Machine class StateMachine def initialize(start_state ...
smtlaissezfaire/hopcroft
1f259b05b1ce2eb4f8f94866127b0cee50b3cc4d
Add more specs
diff --git a/spec/hopcoft/converters/nfa_to_dfa_converter_spec.rb b/spec/hopcoft/converters/nfa_to_dfa_converter_spec.rb index 17a12f2..5244d3d 100644 --- a/spec/hopcoft/converters/nfa_to_dfa_converter_spec.rb +++ b/spec/hopcoft/converters/nfa_to_dfa_converter_spec.rb @@ -1,136 +1,159 @@ require File.expand_path(File....
smtlaissezfaire/hopcroft
c556e41cbbfd45644960681a1cae42d5644febf1
Add a hacky & incomplete DFA->NFA with epsilon closure.
diff --git a/lib/hopcroft/converters/nfa_to_dfa_converter.rb b/lib/hopcroft/converters/nfa_to_dfa_converter.rb index 2c852f8..a33e935 100644 --- a/lib/hopcroft/converters/nfa_to_dfa_converter.rb +++ b/lib/hopcroft/converters/nfa_to_dfa_converter.rb @@ -1,83 +1,95 @@ module Hopcroft module Converters class NfaT...
smtlaissezfaire/hopcroft
40dc378a38c08e097c7109fcb3e2282d2e3a4d90
Add NFA->DFA conversion for non-epsilon transitioning NFA state machines
diff --git a/lib/hopcroft.rb b/lib/hopcroft.rb index 926c2cb..17153c2 100644 --- a/lib/hopcroft.rb +++ b/lib/hopcroft.rb @@ -1,11 +1,12 @@ require "using" require "facets/kernel/returning" module Hopcroft extend Using Using.default_load_scheme = :autoload using :Regex using :Machine + using :Con...