tbmx 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/tbmx.rb +26 -42
- metadata +3 -2
data/lib/tbmx.rb
CHANGED
@@ -294,48 +294,32 @@ module TBMX
|
|
294
294
|
"#{Math::PI}"
|
295
295
|
when "e"
|
296
296
|
"#{Math::E}"
|
297
|
-
when "+"
|
298
|
-
reducable_math_function_handler
|
299
|
-
when "
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
math_function_handler
|
311
|
-
when "
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
when "
|
322
|
-
|
323
|
-
when "asinh"
|
324
|
-
math_function_handler :asinh
|
325
|
-
when "acosh"
|
326
|
-
math_function_handler :acosh
|
327
|
-
when "atanh"
|
328
|
-
math_function_handler :atanh
|
329
|
-
when "erfc"
|
330
|
-
math_function_handler :erfc
|
331
|
-
when "gamma"
|
332
|
-
math_function_handler :gamma
|
333
|
-
when "lgamma"
|
334
|
-
math_function_handler :lgamma
|
335
|
-
when "log10"
|
336
|
-
math_function_handler :log10
|
337
|
-
when "log2"
|
338
|
-
math_function_handler :log2
|
297
|
+
when "+", "-", "*", "/", "%"
|
298
|
+
reducable_math_function_handler command.word.to_sym
|
299
|
+
when "^", "**"
|
300
|
+
number, exponent = numbers_from_expressions
|
301
|
+
number.send :**, exponent
|
302
|
+
when "sin", "cos", "tan",
|
303
|
+
"asin", "acos", "atan",
|
304
|
+
"sinh", "cosh", "tanh",
|
305
|
+
"asinh", "acosh", "atanh",
|
306
|
+
"erf", "erfc",
|
307
|
+
"gamma", "lgamma",
|
308
|
+
"log10", "log2",
|
309
|
+
"sqrt"
|
310
|
+
math_function_handler command.word.to_sym
|
311
|
+
when "log"
|
312
|
+
base, number = numbers_from_expressions
|
313
|
+
if number.nil?
|
314
|
+
Math.log base
|
315
|
+
else
|
316
|
+
Math.log number, base
|
317
|
+
end
|
318
|
+
when "ldexp"
|
319
|
+
fraction, exponent = numbers_from_expressions
|
320
|
+
Math.ldexp fraction, exponent
|
321
|
+
when "hypot"
|
322
|
+
Math.sqrt numbers_from_expressions.map {|n| n**2}
|
339
323
|
else
|
340
324
|
command_error "unknown command #{command.to_html}"
|
341
325
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tbmx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-02-
|
12
|
+
date: 2014-02-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -75,3 +75,4 @@ signing_key:
|
|
75
75
|
specification_version: 3
|
76
76
|
summary: TBMX is a markup language for ThinkingBicycle.com.
|
77
77
|
test_files: []
|
78
|
+
has_rdoc:
|