meta_compile 0.1.0 → 0.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/meta_compile.gemspec +6 -5
- metadata +10 -5
data/meta_compile.gemspec
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'meta_compile'
|
|
3
|
-
s.version = '0.1.
|
|
4
|
-
s.
|
|
5
|
-
s.
|
|
6
|
-
s.
|
|
7
|
-
s.authors = ["Robert Feldt"]
|
|
3
|
+
s.version = '0.1.1'
|
|
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."
|
|
6
|
+
s.author = "Robert Feldt"
|
|
8
7
|
s.email = 'robert.feldt@gmail.com'
|
|
8
|
+
s.homepage = 'https://github.com/robertfeldt/meta_compile'
|
|
9
|
+
s.license = 'MIT'
|
|
9
10
|
s.files = ["Rakefile", "README.md", "meta_compile.gemspec"] + Dir.glob("bin/*") + Dir.glob("bootstrap/*") + Dir.glob("syntaxes/*") + Dir.glob("inputs/*")
|
|
10
11
|
s.executables << 'meta_compile'
|
|
11
12
|
s.homepage =
|
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.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,9 +9,13 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-11-
|
|
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
|
|
14
|
+
description: A meta compilation framework à la Meta-II by Val Schorre, now for Ruby.
|
|
15
|
+
Bootstrapped from a pure-C implementation of Meta-II but then self-hosting. A main
|
|
16
|
+
attraction is that the core specification file is very short (~26 lines), and fully
|
|
17
|
+
self-contained (both syntax and semantics in s single file) which makes it easy
|
|
18
|
+
for Rubyists to get into the wonderful world of meta compilation.
|
|
15
19
|
email: robert.feldt@gmail.com
|
|
16
20
|
executables:
|
|
17
21
|
- meta_compile
|
|
@@ -37,7 +41,8 @@ files:
|
|
|
37
41
|
- syntaxes/stepping_stone_meta_to_ruby_minimal_with_regexps.meta
|
|
38
42
|
- inputs/assignments.input1
|
|
39
43
|
homepage: http://rubygems.org/gems/meta_compile
|
|
40
|
-
licenses:
|
|
44
|
+
licenses:
|
|
45
|
+
- MIT
|
|
41
46
|
post_install_message:
|
|
42
47
|
rdoc_options: []
|
|
43
48
|
require_paths:
|
|
@@ -59,5 +64,5 @@ rubyforge_project:
|
|
|
59
64
|
rubygems_version: 1.8.24
|
|
60
65
|
signing_key:
|
|
61
66
|
specification_version: 3
|
|
62
|
-
summary:
|
|
67
|
+
summary: Meta compiler framework for Ruby
|
|
63
68
|
test_files: []
|