meta_compile 0.1.1 → 0.1.2
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/meta_compile.gemspec +2 -2
- metadata +7 -6
data/meta_compile.gemspec
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'meta_compile'
|
|
3
|
-
s.version = '0.1.
|
|
3
|
+
s.version = '0.1.2'
|
|
4
4
|
s.summary = "Meta compiler framework for Ruby"
|
|
5
|
-
s.description = "A meta compilation framework à la Meta-II by Val Schorre, now for Ruby. Bootstrapped from a pure-C implementation of Meta-II but then self-hosting. A main attraction is that the core specification file is very short (~26 lines), and fully self-contained (both syntax and semantics in s single file) which makes it easy for Rubyists to get into the wonderful world of meta compilation."
|
|
5
|
+
s.description = "A meta compilation framework à la Meta-II by Val Schorre, now for Ruby. Bootstrapped from a pure-C implementation of Meta-II but then self-hosting. A main attraction is that the core specification file is very short (~26 lines), and fully self-contained (both syntax and semantics in s single file) which makes it easy for Rubyists to get into the wonderful world of meta compilation. See github homepage for details and examples: https://github.com/robertfeldt/meta_compile"
|
|
6
6
|
s.author = "Robert Feldt"
|
|
7
7
|
s.email = 'robert.feldt@gmail.com'
|
|
8
8
|
s.homepage = 'https://github.com/robertfeldt/meta_compile'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: meta_compile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,11 +11,12 @@ bindir: bin
|
|
|
11
11
|
cert_chain: []
|
|
12
12
|
date: 2012-11-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
|
-
description: A meta compilation framework à la Meta-II by Val Schorre, now for
|
|
15
|
-
Bootstrapped from a pure-C implementation of Meta-II but then self-hosting.
|
|
16
|
-
attraction is that the core specification file is very short (~26 lines),
|
|
17
|
-
self-contained (both syntax and semantics in s single file) which makes
|
|
18
|
-
for Rubyists to get into the wonderful world of meta compilation.
|
|
14
|
+
description: ! 'A meta compilation framework à la Meta-II by Val Schorre, now for
|
|
15
|
+
Ruby. Bootstrapped from a pure-C implementation of Meta-II but then self-hosting.
|
|
16
|
+
A main attraction is that the core specification file is very short (~26 lines),
|
|
17
|
+
and fully self-contained (both syntax and semantics in s single file) which makes
|
|
18
|
+
it easy for Rubyists to get into the wonderful world of meta compilation. See github
|
|
19
|
+
homepage for details and examples: https://github.com/robertfeldt/meta_compile'
|
|
19
20
|
email: robert.feldt@gmail.com
|
|
20
21
|
executables:
|
|
21
22
|
- meta_compile
|