inkcpp_rb 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +3 -1
- data/ext/inkcpp_rb/inkcpp_rb.cpp +0 -2
- data/inkcpp_rb.gemspec +2 -1
- data/lib/inkcpp_rb/version.rb +3 -0
- data/lib/inkcpp_rb.rb +5 -0
- data/rbi/inkcpp_rb.rbi +4 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b5890b2bbfe3d3c602e99799b9fd2fe650fdef4679bd42faeb6b8a7d9e08996
|
4
|
+
data.tar.gz: 51a71c11f3584b110133d3285f4b7a7a7f249c9ad5a6155eee5999b1748878f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4e64b70c287fc7fd8e4e79e76d10d31b318abfcedf3e27a30ebe000247a55b1fdb93599ad6a4cd7cdc40da7035c3ebf4a8b4c3ec32533e2280d7ccfaa753a6f
|
7
|
+
data.tar.gz: 41821d98ba8b4832325d8958e7e324d4218c77c6ef703aa64037cc5bd7028a55dff3629ed5cd5560667e7cc4791a7d0e2b1f2073cf4322fe45f87c5aaa2e052f
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
data/ext/inkcpp_rb/inkcpp_rb.cpp
CHANGED
@@ -117,8 +117,6 @@ std::string list_to_str(const list& list)
|
|
117
117
|
extern "C"
|
118
118
|
void Init_inkcpp_rb() {
|
119
119
|
Rice::Module rb_mInk = define_module("Ink");
|
120
|
-
rb_mInk.const_set(Rice::Identifier("VERSION"), Rice::String("0.1.0"));
|
121
|
-
|
122
120
|
Data_Type<ink::compiler::compilation_results> rb_cCompilationResults = define_class_under<ink::compiler::compilation_results>(rb_mInk, "CompilationResults")
|
123
121
|
.define_method("warnings", [](ink::compiler::compilation_results &results) {
|
124
122
|
return results.warnings;
|
data/inkcpp_rb.gemspec
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
require_relative "./lib/inkcpp_rb/version"
|
2
3
|
|
3
4
|
Gem::Specification.new do |spec|
|
4
5
|
spec.name = "inkcpp_rb"
|
5
|
-
spec.version =
|
6
|
+
spec.version = InkcppRb::VERSION
|
6
7
|
spec.authors = ["Chris Zelenak"]
|
7
8
|
spec.email = ["chris@zelenak.me"]
|
8
9
|
spec.licenses = ["MIT"]
|
data/lib/inkcpp_rb.rb
ADDED
data/rbi/inkcpp_rb.rbi
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inkcpp_rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Zelenak
|
@@ -350,6 +350,8 @@ files:
|
|
350
350
|
- ext/inkcpp_rb/inkcpp/unreal/render.css
|
351
351
|
- ext/inkcpp_rb/inkcpp_rb.cpp
|
352
352
|
- inkcpp_rb.gemspec
|
353
|
+
- lib/inkcpp_rb.rb
|
354
|
+
- lib/inkcpp_rb/version.rb
|
353
355
|
- rbi/inkcpp_rb.rbi
|
354
356
|
- sorbet/config
|
355
357
|
- sorbet/rbi/annotations/.gitattributes
|