parsecs 0.11.3 → 0.11.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 947ae28755ab81d9d6c25880d3cde3c7c8e9bc2ed78bd5fbc00a170c4a8bb20a
4
- data.tar.gz: 8ee93d06d2c715f5a3c7fdee925dd4a4a4e70c790de67674198bac3bf24ec9b6
3
+ metadata.gz: f31334656fdb4d48c312b6adabb100f74750060454bd21865d35594a340923af
4
+ data.tar.gz: bfab768c82d4b69dcaf018b63017c1027bd648a6ca4ad036fc4a32b100f41b60
5
5
  SHA512:
6
- metadata.gz: 1beebe569ab892ae60faba0d8cbeaafb4ac4cc37275c6f7b46f0f9814856ff6d4b63deb6dc3ab87746edf9122861a6c68ba501e0349c2197e5276005383abcea
7
- data.tar.gz: f8f34384386a8efac5c718e079effaef6dee23595e32c5408325d0c9c46289bfba17f7c7adf971d62af1c611d6bc127c88c3dbf6e422fcb86e88f76b6f7e20ee
6
+ metadata.gz: e67b9d458d4c15c4cc2dde06646ff019d9b8154b75546fb816781a92cf34c71f4d051d23b989799bba4ca0a443ed3c5b233ae4ffdb6c5c53b99e0b02583c8557
7
+ data.tar.gz: bf3f8a89c3e61852edef6ce8b2489356f9681d362f6709f568969eda34575de35282df78b27cee17010a2ce562e7d9604aef28b11ab3912309e6356fcd231a67
@@ -38,7 +38,7 @@ libs.each do |lib|
38
38
  end
39
39
 
40
40
  GIT_REPOSITORY = 'https://github.com/niltonvasques/equations-parser.git'.freeze
41
- COMMIT = 'b011ace5697fa65eade579f1c85aa38fd1fb816d'.freeze
41
+ COMMIT = 'd49225cddcf2fb08d8604fc2a7e6198983dcd1b9'.freeze
42
42
 
43
43
  Dir.chdir(BASEDIR) do
44
44
  system('git init')
data/lib/parsec.rb CHANGED
@@ -6,7 +6,7 @@ module Parsec
6
6
  class Parsec
7
7
  using StringToBooleanRefinements
8
8
 
9
- VERSION = '0.11.3'.freeze
9
+ VERSION = '0.11.4'.freeze
10
10
 
11
11
  # evaluates the equation and returns only the result
12
12
  def self.eval_equation(equation)
data/test/test_parsec.rb CHANGED
@@ -64,6 +64,7 @@ class TestParsec < Minitest::Test
64
64
  assert_equal('<a href="http://foo.bar">Title</a>', parser.eval_equation('link("Title", "http://foo.bar")'))
65
65
  assert_equal('<a href="#">Title</a>', parser.eval_equation('link("Title", "#")'))
66
66
  assert_equal('<a href="/test">Test title</a>', parser.eval_equation('link("Test title", "/test")'))
67
+ assert_equal('<a href="/test" download="testFileName">Test title</a>', parser.eval_equation('link("Test title", "/test", "testFileName")'))
67
68
  assert_equal(true, parser.eval_equation('contains("Hello World", "orld")'))
68
69
  assert_equal(true, parser.eval_equation('contains("One Flew Over The Cuckoo\'s", "koo")'))
69
70
  assert_equal(false, parser.eval_equation('contains("Hello World", "Worlds")'))
@@ -75,8 +76,10 @@ class TestParsec < Minitest::Test
75
76
  assert_raises(SyntaxError) { parser.eval_equation('contains(1234567, "789")') }
76
77
  assert_raises(SyntaxError) { parser.eval_equation('contains("hello", 2.2)') }
77
78
  assert_raises(SyntaxError) { parser.eval_equation_with_type('link()') }
79
+ assert_raises(SyntaxError) { parser.eval_equation_with_type('link("1")') }
78
80
  assert_raises(SyntaxError) { parser.eval_equation_with_type('link(1, 2, 3)') }
79
81
  assert_raises(SyntaxError) { parser.eval_equation_with_type('link(1, "2")') }
82
+ assert_raises(SyntaxError) { parser.eval_equation_with_type('link("1","2","3","4")') }
80
83
  end
81
84
 
82
85
  def test_complex_string_manipulation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parsecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.3
4
+ version: 0.11.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nilton Vasques
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-09-13 00:00:00.000000000 Z
13
+ date: 2022-09-29 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest