-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regex commits for equations parser (#60)
# Description ✍️ Creates regex(input, pattern) function # Overview 🔍 ```c regex("2 dogs are walking in the streets", "(\\d+ \\w+)") # => "2 dogs" ``` # Checks ☑️ - Regex commits for equations parser - Add regex tests
- Loading branch information
1 parent
26ddcf8
commit f500d7a
Showing
4 changed files
with
41 additions
and
5 deletions.
There are no files selected for viewing
Submodule equations-parser
updated
10 files
+33 −0 | .github/workflows/build.yml | |
+218 −301 | Makefile | |
+140 −0 | parser/equationsParser.cpp | |
+21 −0 | parser/equationsParser.h | |
+63 −0 | parser/mpFuncCommon.cpp | |
+13 −0 | parser/mpFuncCommon.h | |
+18 −18 | parser/mpFuncStr.cpp | |
+3 −0 | parser/mpPackageCommon.cpp | |
+38 −23 | sample/example.cpp | |
+248 −0 | tests.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'parsecs' | ||
s.version = '0.11.9' | ||
s.version = '0.12.0' | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Nilton Vasques', 'Victor Cordeiro', 'Beatriz Fagundes'] | ||
s.email = ['[email protected]', '[email protected]', '[email protected]'] | ||
s.description = 'ParseCs is a gem to evaluate equations using a lighter and extented version of the muparserx C++ library' | ||
s.homepage = 'https://github.com/niltonvasques/parsec' | ||
s.description = 'Parsecs is a gem to evaluate equations using a lighter and extented version of the muparserx C++ library' | ||
s.homepage = 'https://github.com/oxeanbits/parsec' | ||
s.summary = 'A gem to evaluate equations using muparserx C++ library' | ||
s.files = ['lib/parsec.rb', 'lib/string_to_boolean_refinements.rb', 'ext/libnativemath/libnativemath.i', | ||
'ext/libnativemath/libnativemath.cpp', 'ext/libnativemath/libnativemath.h'] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters