language-ruby 0.5.6 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -1
  3. data/.ruby-version +1 -0
  4. data/.tool-versions +1 -1
  5. data/Gemfile +5 -4
  6. data/Gemfile.lock +12 -23
  7. data/README.md +2 -102
  8. data/language-ruby.gemspec +7 -5
  9. data/lib/language/atom/absent.rb +29 -0
  10. data/lib/language/atom/aka.rb +32 -0
  11. data/lib/language/atom/and.rb +32 -0
  12. data/lib/language/atom/any.rb +15 -0
  13. data/lib/language/atom/ignore.rb +27 -0
  14. data/lib/language/atom/maybe.rb +32 -0
  15. data/lib/language/atom/or.rb +46 -0
  16. data/lib/language/atom/repeat.rb +57 -0
  17. data/lib/language/atom/str.rb +21 -0
  18. data/lib/language/atom/then.rb +21 -0
  19. data/lib/language/atom.rb +10 -291
  20. data/lib/language/output.rb +13 -11
  21. data/lib/language/parser/absent/present.rb +2 -0
  22. data/lib/language/parser/absent.rb +2 -0
  23. data/lib/language/parser/end_of_input.rb +2 -0
  24. data/lib/language/parser/interuption.rb +2 -0
  25. data/lib/language/parser/not_end_of_input.rb +2 -0
  26. data/lib/language/parser/str/not_found.rb +2 -0
  27. data/lib/language/parser/str.rb +2 -0
  28. data/lib/language/parser.rb +10 -10
  29. data/lib/language/version.rb +5 -0
  30. data/lib/language-ruby.rb +2 -5
  31. data/lib/language.rb +9 -7
  32. data/spec/language_spec.rb +21 -0
  33. data/spec/spec_helper.rb +2 -5
  34. metadata +18 -218
  35. data/.cherry.js +0 -21
  36. data/.editorconfig +0 -9
  37. data/.github/workflows/rspec.yml +0 -14
  38. data/.prettierrc +0 -3
  39. data/CHANGELOG.md +0 -55
  40. data/LICENSE +0 -7
  41. data/TODO +0 -17
  42. data/bin/code +0 -76
  43. data/bin/format +0 -3
  44. data/bin/publish +0 -19
  45. data/bin/template +0 -85
  46. data/bin/test +0 -17
  47. data/code-ruby.gemspec +0 -17
  48. data/docs/class.code +0 -9
  49. data/docs/euler/1.template +0 -10
  50. data/docs/euler/2.template +0 -16
  51. data/docs/euler/3.template +0 -16
  52. data/docs/euler/4.template +0 -10
  53. data/docs/euler/5.template +0 -13
  54. data/docs/fibonnaci.template +0 -14
  55. data/docs/meetup.code +0 -12
  56. data/docs/precedence.template +0 -36
  57. data/docs/rain.code +0 -22
  58. data/docs/slack.code +0 -17
  59. data/docs/stripe.code +0 -7
  60. data/docs/twitter.code +0 -9
  61. data/lib/code/error.rb +0 -18
  62. data/lib/code/node/base_10.rb +0 -29
  63. data/lib/code/node/base_16.rb +0 -13
  64. data/lib/code/node/base_2.rb +0 -13
  65. data/lib/code/node/base_8.rb +0 -13
  66. data/lib/code/node/boolean.rb +0 -22
  67. data/lib/code/node/call.rb +0 -47
  68. data/lib/code/node/call_argument.rb +0 -21
  69. data/lib/code/node/chained_call.rb +0 -23
  70. data/lib/code/node/code.rb +0 -20
  71. data/lib/code/node/decimal.rb +0 -26
  72. data/lib/code/node/dictionnary.rb +0 -33
  73. data/lib/code/node/equal.rb +0 -34
  74. data/lib/code/node/function.rb +0 -20
  75. data/lib/code/node/function_parameter.rb +0 -31
  76. data/lib/code/node/if.rb +0 -59
  77. data/lib/code/node/if_modifier.rb +0 -47
  78. data/lib/code/node/list.rb +0 -16
  79. data/lib/code/node/negation.rb +0 -15
  80. data/lib/code/node/not.rb +0 -15
  81. data/lib/code/node/nothing.rb +0 -12
  82. data/lib/code/node/number.rb +0 -25
  83. data/lib/code/node/operation.rb +0 -38
  84. data/lib/code/node/power.rb +0 -20
  85. data/lib/code/node/rescue.rb +0 -17
  86. data/lib/code/node/splat.rb +0 -15
  87. data/lib/code/node/statement.rb +0 -59
  88. data/lib/code/node/string.rb +0 -53
  89. data/lib/code/node/ternary.rb +0 -24
  90. data/lib/code/node/unary_minus.rb +0 -15
  91. data/lib/code/node/while.rb +0 -35
  92. data/lib/code/node.rb +0 -13
  93. data/lib/code/object/argument.rb +0 -32
  94. data/lib/code/object/boolean.rb +0 -27
  95. data/lib/code/object/decimal.rb +0 -162
  96. data/lib/code/object/dictionnary.rb +0 -96
  97. data/lib/code/object/function.rb +0 -64
  98. data/lib/code/object/global.rb +0 -42
  99. data/lib/code/object/integer.rb +0 -221
  100. data/lib/code/object/list.rb +0 -207
  101. data/lib/code/object/nothing.rb +0 -23
  102. data/lib/code/object/number.rb +0 -6
  103. data/lib/code/object/range.rb +0 -146
  104. data/lib/code/object/ruby_function.rb +0 -31
  105. data/lib/code/object/string.rb +0 -102
  106. data/lib/code/object.rb +0 -197
  107. data/lib/code/parser/addition.rb +0 -21
  108. data/lib/code/parser/and_operator.rb +0 -17
  109. data/lib/code/parser/bitwise_and.rb +0 -17
  110. data/lib/code/parser/bitwise_or.rb +0 -21
  111. data/lib/code/parser/boolean.rb +0 -17
  112. data/lib/code/parser/call.rb +0 -122
  113. data/lib/code/parser/chained_call.rb +0 -47
  114. data/lib/code/parser/class.rb +0 -45
  115. data/lib/code/parser/code.rb +0 -25
  116. data/lib/code/parser/dictionnary.rb +0 -67
  117. data/lib/code/parser/equal.rb +0 -94
  118. data/lib/code/parser/equality.rb +0 -35
  119. data/lib/code/parser/equality_lower.rb +0 -9
  120. data/lib/code/parser/function.rb +0 -85
  121. data/lib/code/parser/greater.rb +0 -25
  122. data/lib/code/parser/group.rb +0 -22
  123. data/lib/code/parser/if.rb +0 -63
  124. data/lib/code/parser/if_modifier.rb +0 -55
  125. data/lib/code/parser/list.rb +0 -42
  126. data/lib/code/parser/multiplication.rb +0 -25
  127. data/lib/code/parser/name.rb +0 -107
  128. data/lib/code/parser/negation.rb +0 -30
  129. data/lib/code/parser/not_keyword.rb +0 -23
  130. data/lib/code/parser/nothing.rb +0 -22
  131. data/lib/code/parser/number.rb +0 -154
  132. data/lib/code/parser/operation.rb +0 -35
  133. data/lib/code/parser/or_keyword.rb +0 -21
  134. data/lib/code/parser/or_operator.rb +0 -17
  135. data/lib/code/parser/power.rb +0 -43
  136. data/lib/code/parser/range.rb +0 -17
  137. data/lib/code/parser/rescue.rb +0 -39
  138. data/lib/code/parser/shift.rb +0 -21
  139. data/lib/code/parser/splat.rb +0 -31
  140. data/lib/code/parser/statement.rb +0 -9
  141. data/lib/code/parser/string.rb +0 -78
  142. data/lib/code/parser/ternary.rb +0 -46
  143. data/lib/code/parser/unary_minus.rb +0 -31
  144. data/lib/code/parser/while.rb +0 -36
  145. data/lib/code/parser/whitespace.rb +0 -49
  146. data/lib/code/parser.rb +0 -19
  147. data/lib/code/ruby.rb +0 -174
  148. data/lib/code-ruby.rb +0 -10
  149. data/lib/code.rb +0 -47
  150. data/lib/template/node/code_part.rb +0 -13
  151. data/lib/template/node/part.rb +0 -19
  152. data/lib/template/node/template.rb +0 -15
  153. data/lib/template/node/text_part.rb +0 -13
  154. data/lib/template/node.rb +0 -4
  155. data/lib/template/parser/template.rb +0 -39
  156. data/lib/template/parser.rb +0 -19
  157. data/lib/template/version.rb +0 -3
  158. data/lib/template-ruby.rb +0 -10
  159. data/lib/template.rb +0 -50
  160. data/spec/code/addition_spec.rb +0 -13
  161. data/spec/code/and_operator_spec.rb +0 -13
  162. data/spec/code/bitwise_and_spec.rb +0 -13
  163. data/spec/code/bitwise_or_spec.rb +0 -13
  164. data/spec/code/boolean_spec.rb +0 -13
  165. data/spec/code/call_spec.rb +0 -21
  166. data/spec/code/chained_call_spec.rb +0 -16
  167. data/spec/code/code_spec.rb +0 -29
  168. data/spec/code/dictionnary_spec.rb +0 -17
  169. data/spec/code/equal_spec.rb +0 -26
  170. data/spec/code/equality_spec.rb +0 -13
  171. data/spec/code/function_spec.rb +0 -18
  172. data/spec/code/greater_spec.rb +0 -18
  173. data/spec/code/group_spec.rb +0 -12
  174. data/spec/code/if_modifier_spec.rb +0 -20
  175. data/spec/code/if_spec.rb +0 -25
  176. data/spec/code/list_spec.rb +0 -19
  177. data/spec/code/multiplication_spec.rb +0 -18
  178. data/spec/code/negation_spec.rb +0 -20
  179. data/spec/code/not_keyword_spec.rb +0 -13
  180. data/spec/code/nothing_spec.rb +0 -17
  181. data/spec/code/number_spec.rb +0 -22
  182. data/spec/code/or_keyword_spec.rb +0 -17
  183. data/spec/code/or_operator_spec.rb +0 -16
  184. data/spec/code/parser/boolean_spec.rb +0 -16
  185. data/spec/code/parser/call_spec.rb +0 -26
  186. data/spec/code/parser/chained_call.rb +0 -17
  187. data/spec/code/parser/dictionnary_spec.rb +0 -18
  188. data/spec/code/parser/function_spec.rb +0 -16
  189. data/spec/code/parser/group_spec.rb +0 -18
  190. data/spec/code/parser/list_spec.rb +0 -18
  191. data/spec/code/parser/number_spec.rb +0 -12
  192. data/spec/code/parser/string_spec.rb +0 -21
  193. data/spec/code/parser_spec.rb +0 -23
  194. data/spec/code/power_spec.rb +0 -13
  195. data/spec/code/range_spec.rb +0 -16
  196. data/spec/code/rescue_spec.rb +0 -13
  197. data/spec/code/shift_spec.rb +0 -13
  198. data/spec/code/splat_spec.rb +0 -13
  199. data/spec/code/string_spec.rb +0 -27
  200. data/spec/code/ternary_spec.rb +0 -18
  201. data/spec/code/unary_minus_spec.rb +0 -13
  202. data/spec/code/while_spec.rb +0 -18
  203. data/template-ruby.gemspec +0 -19
@@ -1,20 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "if modifier" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["1 if true", "1"],
9
- ["1 if false", ""],
10
- ["1 unless true", ""],
11
- ["1 unless false", "1"],
12
- ["a = 0 a += 1 while a < 10 a", "10"],
13
- ["a = 0 a += 1 until a > 10 a", "11"]
14
- ].each do |input, output|
15
- context input do
16
- let(:input) { input }
17
- it { expect(subject).to eq(output) }
18
- end
19
- end
20
- end
data/spec/code/if_spec.rb DELETED
@@ -1,25 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "if" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["if true 1", "1"],
9
- ["unless false 1", "1"],
10
- ["if false 1", ""],
11
- ["unless true 1", ""],
12
- ["if false 1 else 2", "2"],
13
- ["if false 1 elsif true 2", "2"],
14
- ["if false 1 elsif false 2", ""],
15
- ["if false 1 else if true 2", "2"],
16
- ["if false 1 else if false 2", ""],
17
- ["if false 1 else unless false 2", "2"],
18
- ["if false 1 else unless true 2", ""]
19
- ].each do |input, output|
20
- context input do
21
- let(:input) { input }
22
- it { expect(subject).to eq(output) }
23
- end
24
- end
25
- end
@@ -1,19 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "list" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["[]", "[]"],
9
- ["[1, 2, 3]", "[1, 2, 3]"],
10
- ["[1, 2, 3].include?(2)", "true"],
11
- ["[1, 2, 3].include?(4)", "false"],
12
- ["[[true]]", "[[true]]"]
13
- ].each do |input, output|
14
- context input do
15
- let(:input) { input }
16
- it { expect(subject).to eq(output) }
17
- end
18
- end
19
- end
@@ -1,18 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "multiplication" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["2 * 3", "6"],
9
- ["2 * 3 + 2", "8"],
10
- ["2 / 4", "0.5"],
11
- ["4 % 3", "1"]
12
- ].each do |input, output|
13
- context input do
14
- let(:input) { input }
15
- it { expect(subject).to eq(output) }
16
- end
17
- end
18
- end
@@ -1,20 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "function" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- %w[!false true],
9
- %w[!!true true],
10
- %w[!!1 true],
11
- %w[+1 1],
12
- %w[+1.0 1.0],
13
- %w[+true true]
14
- ].each do |input, output|
15
- context input do
16
- let(:input) { input }
17
- it { expect(subject).to eq(output) }
18
- end
19
- end
20
- end
@@ -1,13 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "not keyword" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [["not true", "false"], ["not not false", "false"]].each do |input, output|
8
- context input do
9
- let(:input) { input }
10
- it { expect(subject).to eq(output) }
11
- end
12
- end
13
- end
@@ -1,17 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "nothing" do
4
- subject { Code.evaluate(input).to_s }
5
-
6
- [
7
- ["nothing", ""],
8
- ["null", ""],
9
- ["nil", ""],
10
- ["nothing null", ""]
11
- ].each do |input, output|
12
- context input do
13
- let(:input) { input }
14
- it { expect(subject).to eq(output) }
15
- end
16
- end
17
- end
@@ -1,22 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "number" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- %w[0 0],
9
- %w[1.1 1.1],
10
- %w[0x10 16],
11
- %w[0o10 8],
12
- %w[0b10 2],
13
- %w[1e1 10],
14
- %w[1.0e1 10.0],
15
- %w[10e1.0 100.0]
16
- ].each do |input, output|
17
- context input do
18
- let(:input) { input }
19
- it { expect(subject).to eq(output) }
20
- end
21
- end
22
- end
@@ -1,17 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "or keyword" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["true or false", "true"],
9
- ["true and false", "false"],
10
- ["random = 1 random", "1"]
11
- ].each do |input, output|
12
- context input do
13
- let(:input) { input }
14
- it { expect(subject).to eq(output) }
15
- end
16
- end
17
- end
@@ -1,16 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "or operator" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["true || false", "true"],
9
- ["false || false", "false"]
10
- ].each do |input, output|
11
- context input do
12
- let(:input) { input }
13
- it { expect(subject).to eq(output) }
14
- end
15
- end
16
- end
@@ -1,16 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::Boolean do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- ["true", [{ boolean: "true" }]],
8
- ["false", [{ boolean: "false" }]]
9
- ].each do |input, output|
10
- context input.inspect do
11
- let(:input) { input }
12
-
13
- it { expect(subject).to eq(output) }
14
- end
15
- end
16
- end
@@ -1,26 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::Call do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- "a",
8
- "hello",
9
- "hello()",
10
- "render(user)",
11
- 'render(user, first_name: "Dorian")',
12
- "render { }",
13
- "render do end",
14
- "render { |name| name.upcase }",
15
- "render(user) { |name| name.upcase }",
16
- "render(user) do |name| name.upcase end",
17
- 'render { "Dorian" }',
18
- 'render(user) { "Dorian" }',
19
- 'render(user) do "Dorian" end'
20
- ].each do |input|
21
- context input do
22
- let(:input) { input }
23
- it { subject }
24
- end
25
- end
26
- end
@@ -1,17 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::ChainedCall do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- "a.b",
8
- "user.first_name",
9
- "user.admin?",
10
- 'user.update!(name: "Dorian")'
11
- ].each do |input|
12
- context input do
13
- let(:input) { input }
14
- it { subject }
15
- end
16
- end
17
- end
@@ -1,18 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::Dictionnary do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- "{}",
8
- "{ }",
9
- "{/* comment */}",
10
- "{ a: 1, b: 2, c: 3 }",
11
- '{ "first_name": "Dorian" }'
12
- ].each do |input|
13
- context input do
14
- let(:input) { input }
15
- it { subject }
16
- end
17
- end
18
- end
@@ -1,16 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::Function do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- "() => {}",
8
- "(a, b) => { add(a, b) }",
9
- "(a:, b:) => { add(a, b) }"
10
- ].each do |input|
11
- context input do
12
- let(:input) { input }
13
- it { subject }
14
- end
15
- end
16
- end
@@ -1,18 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::Group do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- [
8
- "(true (nothing))",
9
- [{ group: [{ boolean: "true" }, { group: [{ nothing: "nothing" }] }] }]
10
- ]
11
- ].each do |input, output|
12
- context input.inspect do
13
- let(:input) { input }
14
-
15
- it { expect(subject).to eq(output) }
16
- end
17
- end
18
- end
@@ -1,18 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::List do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- "[]",
8
- "[ ]",
9
- "[/* comment */]",
10
- "[1, 2, 3]",
11
- "['hello', 1, true, [false, nothing]]"
12
- ].each do |input|
13
- context input do
14
- let(:input) { input }
15
- it { subject }
16
- end
17
- end
18
- end
@@ -1,12 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::Number do
4
- subject { Code::Parser.parse(input) }
5
-
6
- %w[0 1 1.1 123.123 1_000.12_244 0xf0 0o70 0b10].each do |input|
7
- context input do
8
- let(:input) { input }
9
- it { subject }
10
- end
11
- end
12
- end
@@ -1,21 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Code::Parser::String do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- "''",
8
- '""',
9
- "'Hello Dorian'",
10
- '"Hello Dorian"',
11
- "'Hello \\{name}'",
12
- '"Hello \\{name}"',
13
- "'Hello {name}'",
14
- '"Hello {name}"'
15
- ].each do |input|
16
- context input do
17
- let(:input) { input }
18
- it { subject }
19
- end
20
- end
21
- end
@@ -1,23 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "Code::Parser" do
4
- subject { Code::Parser.parse(input) }
5
-
6
- [
7
- ["", []],
8
- [" ", []],
9
- ["\n", []],
10
- ["nothing", [{ nothing: "nothing" }]],
11
- [" nothing ", [{ nothing: "nothing" }]],
12
- [
13
- "nothing null nil",
14
- [{ nothing: "nothing" }, { nothing: "null" }, { nothing: "nil" }]
15
- ]
16
- ].each do |input, output|
17
- context input.inspect do
18
- let(:input) { input }
19
-
20
- it { expect(subject).to eq(output) }
21
- end
22
- end
23
- end
@@ -1,13 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "function" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [["2 ** 3", "8"], ["2 ** 3 ** 2", "512"]].each do |input, output|
8
- context input do
9
- let(:input) { input }
10
- it { expect(subject).to eq(output) }
11
- end
12
- end
13
- end
@@ -1,16 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "range" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["(0..1).to_list", "[0, 1]"],
9
- ["(0...1).to_list", "[0]"]
10
- ].each do |input, output|
11
- context input do
12
- let(:input) { input }
13
- it { expect(subject).to eq(output) }
14
- end
15
- end
16
- end
@@ -1,13 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "rescue" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [["a rescue 'oops'", "oops"]].each do |input, output|
8
- context input do
9
- let(:input) { input }
10
- it { expect(subject).to eq(output) }
11
- end
12
- end
13
- end
@@ -1,13 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "shift" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [["1 >> 1", "0"], ["1 << 1", "2"]].each do |input, output|
8
- context input do
9
- let(:input) { input }
10
- it { expect(subject).to eq(output) }
11
- end
12
- end
13
- end
@@ -1,13 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "string" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [["[1, 2].map(&:to_string)", '["1", "2"]']].each do |input, output|
8
- context input do
9
- let(:input) { input }
10
- it { expect(subject).to eq(output) }
11
- end
12
- end
13
- end
@@ -1,27 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "string" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["''", ""],
9
- ['""', ""],
10
- %w[:hello hello],
11
- %w[:admin? admin?],
12
- %w[:update! update!],
13
- ["'Hello Dorian'", "Hello Dorian"],
14
- ['"Hello Dorian"', "Hello Dorian"],
15
- ["'Hello \\{name}'", "Hello {name}"],
16
- ['"Hello \\{name}"', "Hello {name}"],
17
- ["'Hello {1}'", "Hello 1"],
18
- ['"Hello {1}"', "Hello 1"],
19
- ['"Hello".include?("H")', "true"],
20
- ['"Hello".downcase', "hello"]
21
- ].each do |input, output|
22
- context input do
23
- let(:input) { input }
24
- it { expect(subject).to eq(output) }
25
- end
26
- end
27
- end
@@ -1,18 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "ternary" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["true ? 1", "1"],
9
- ["false ? 1", ""],
10
- ["true ? 1 : 2", "1"],
11
- ["false ? 1 : 2", "2"]
12
- ].each do |input, output|
13
- context input do
14
- let(:input) { input }
15
- it { expect(subject).to eq(output) }
16
- end
17
- end
18
- end
@@ -1,13 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "function" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [%w[-1 -1], %w[--1 1], %w[-1.0 -1.0], %w[--1.0 1.0]].each do |input, output|
8
- context input do
9
- let(:input) { input }
10
- it { expect(subject).to eq(output) }
11
- end
12
- end
13
- end
@@ -1,18 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe "while" do
4
- let(:timeout) { 0 }
5
- subject { Code.evaluate(input, timeout: timeout).to_s }
6
-
7
- [
8
- ["while false", ""],
9
- ["a = 0\nwhile a < 10 a += 1 end a", "10"],
10
- ["until true", ""],
11
- ["a = 0\nuntil a > 10 a += 1 end a", "11"]
12
- ].each do |input, output|
13
- context input do
14
- let(:input) { input }
15
- it { expect(subject).to eq(output) }
16
- end
17
- end
18
- end
@@ -1,19 +0,0 @@
1
- require_relative "lib/template/version"
2
-
3
- Gem::Specification.new do |s|
4
- s.name = "template-ruby"
5
- s.version = ::Template::Version
6
- s.summary = "A templating programming language"
7
- s.description =
8
- 'A templating programming language, like "Hello {name}" with {name: "Dorian"} gives "Hello Dorian"'
9
- s.authors = ["Dorian Marié"]
10
- s.email = "dorian@dorianmarie.fr"
11
- s.files = `git ls-files`.split($/)
12
- s.test_files = s.files.grep(%r{^(test|spec|features)/})
13
- s.require_paths = ["lib"]
14
- s.homepage = "https://github.com/dorianmariefr/template-ruby"
15
- s.license = "MIT"
16
- s.executables = "template"
17
-
18
- s.add_dependency "zeitwerk", "~> 2"
19
- end