sorcerer 0.3.11 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -2
- data/lib/sorcerer/version.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5c383799eb8b1882f4b289039e571d8a518ddc0
|
4
|
+
data.tar.gz: cb39a3a20b85eb3fc497d035ebee9c0c6375f7b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea8ce6b6578aa0c588bf82bc917a7d7ddfe68691f026f0fd7497febac8ca52794e75492460eaffdc2ed7d92bf608176221b914936136fad15327b94ab35a1ad5
|
7
|
+
data.tar.gz: 47bc74f3aa301b682dbf0bfcf0a8dfe1acab4e3b7297aa7a06b5e1ec6d5c16ff97f0b7bc17f440a613b2bfcb0ce8e3c153cf777fa3abd799260919d5cf22dd25
|
data/README.md
CHANGED
@@ -11,11 +11,11 @@ Sorcerer is targetted mainly at small snippets of Ruby code,
|
|
11
11
|
expressable in a single line. Longer examples may be re-sourced, but
|
12
12
|
they will be rendered in a single line format.
|
13
13
|
|
14
|
-
**Version: 0.
|
14
|
+
**Version: 1.0.0**
|
15
15
|
|
16
16
|
## Limitations
|
17
17
|
|
18
|
-
Sorcerer is only tested on Ruby 1.9.
|
18
|
+
Sorcerer is only tested on Ruby 1.9 and 2.0.
|
19
19
|
|
20
20
|
## Links
|
21
21
|
|
@@ -130,6 +130,12 @@ MIT-LICENSE file for details.
|
|
130
130
|
|
131
131
|
## History
|
132
132
|
|
133
|
+
* 1.0.0 - Ready for the work, version 1!
|
134
|
+
|
135
|
+
* 0.3.11 - Fix support for subexpressions involving Meth() calls.
|
136
|
+
|
137
|
+
* 0.3.10 - Fix several issues with spaces in argument lists.
|
138
|
+
|
133
139
|
* 0.3.9 - Support %i{} and %I{}.
|
134
140
|
|
135
141
|
* 0.3.8 - Include constants in sub-expressions.
|
data/lib/sorcerer/version.rb
CHANGED