sorcerer 0.3.11 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -2
  3. data/lib/sorcerer/version.rb +3 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f65acc7f174926768d7515c943f2895106a79f80
4
- data.tar.gz: 79dce6386aa13cef261f88b20be6594406f325d9
3
+ metadata.gz: e5c383799eb8b1882f4b289039e571d8a518ddc0
4
+ data.tar.gz: cb39a3a20b85eb3fc497d035ebee9c0c6375f7b4
5
5
  SHA512:
6
- metadata.gz: 471a9b64f1487826f2f7ee8b3844d655004765b338686debdab40c3a173bf8b0ad5b36bd544eab9adf2eb0901acd480261c5761b233e51a0d76221efdb2d1e15
7
- data.tar.gz: 67d2541e79034a1172be87e26eeddb02bfa9346a607d82d578531f1883f0919a9ba436c9687ae2062f8fd225ada3661fcbc3de68247ebf29852f074ce3d63d64
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.3.11**
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.
@@ -1,8 +1,8 @@
1
1
  module Sorcerer
2
2
  VERSION_NUMBERS = [
3
- VERSION_MAJOR = 0,
4
- VERSION_MINOR = 3,
5
- VERSION_BUILD = 11,
3
+ VERSION_MAJOR = 1,
4
+ VERSION_MINOR = 0,
5
+ VERSION_BUILD = 0,
6
6
  ]
7
7
 
8
8
  VERSION = VERSION_NUMBERS.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sorcerer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.11
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Weirich