relisp 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +5 -0
- data/lib/relisp/type_conversion/programming_types.rb +2 -1
- data/lib/relisp.rb +1 -1
- data/test/test_programming_types.rb +4 -3
- metadata +4 -4
data/CHANGELOG
CHANGED
data/lib/relisp.rb
CHANGED
@@ -271,10 +271,11 @@ module TestRelisp
|
|
271
271
|
end
|
272
272
|
|
273
273
|
def test_to_elisp
|
274
|
-
str = "a string\nwith
|
275
|
-
assert @emacs.elisp_eval( "(equal \"a string\\nwith
|
274
|
+
str = "a string\nwith unicode: \u{20b6}"
|
275
|
+
assert @emacs.elisp_eval( "(equal \"a string\\nwith unicode: \\u20b6\" #{str.to_elisp} )" ), "This test will fail in ruby 1.8, but that's okay"
|
276
276
|
@emacs.provide(:str, binding)
|
277
|
-
assert @emacs.elisp_eval( "(equal \"a string\\nwith
|
277
|
+
assert @emacs.elisp_eval( "(equal \"a string\\nwith unicode: \\u20b6\" (ruby-eval \"str\") )" )
|
278
|
+
assert_equal str, @emacs.elisp_eval( "(ruby-eval \"str\")" )
|
278
279
|
end
|
279
280
|
end
|
280
281
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relisp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 1
|
10
|
+
version: 1.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Don
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-01-
|
18
|
+
date: 2011-01-10 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|