gloss 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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +0 -1
- data/ext/gloss/src/gloss.cr +1 -1
- data/lib/gloss/version.rb +1 -1
- data/src/lib/gloss/version.gl +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 598f28c63b98dc26491f81b56112a067e53700f36136e9da1f2a4fbda60e14fc
|
|
4
|
+
data.tar.gz: 0f39f4a5cd5202bdc280c81b0fac581d06bc9303e58df7ed39ffb993cdfe577f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d3687951054a991b8c13eae82be7d7ccdb1fd5c2a730ced1b7472a3aa1b59a4fca5471ecc0e2dca00b3abf337a3ebb79bc9e06c3677fc55d30c52f682b332b0
|
|
7
|
+
data.tar.gz: 0b14828108ea3fa140a560a04313ff6c0321f1e968e168532ae9ab092e41291affe9f4feac1f4309d5be63fd6b0b0cb63e48bce1ea6b5652bb947b051913d07e
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
[](https://github.com/johansenja/gloss/actions?query=workflow%3A%22Crystal+Specs%22)
|
|
5
5
|
[&total_label=)](https://rubygems.org/gems/gloss)
|
|
6
6
|
[&metric=true)](https://rubygems.org/gems/gloss)
|
|
7
|
-
[](https://rubygems.org/gems/gloss)
|
|
8
7
|
|
|
9
8
|
[Gloss](https://en.wikipedia.org/wiki/Gloss_(annotation)) is a high-level programming language based on [Ruby](https://github.com/ruby/ruby) and [Crystal](https://github.com/crystal-lang/crystal), which compiles to ruby; its aims are on transparency,
|
|
10
9
|
efficiency, and to enhance ruby's goal of developer happiness and productivity.
|
data/ext/gloss/src/gloss.cr
CHANGED
|
@@ -4,7 +4,7 @@ require "./cr_ast"
|
|
|
4
4
|
require "./rb_ast"
|
|
5
5
|
require "./parser"
|
|
6
6
|
|
|
7
|
-
def parse_string(
|
|
7
|
+
def parse_string(_self : CrRuby::VALUE, str : CrRuby::VALUE)
|
|
8
8
|
st = CrRuby.rb_str_to_str(str)
|
|
9
9
|
string = String.new(CrRuby.rb_string_value_cstr(pointerof(st)))
|
|
10
10
|
|
data/lib/gloss/version.rb
CHANGED
data/src/lib/gloss/version.gl
CHANGED