hello_rusty_world 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/Cargo.toml +4 -1
- data/docker/dev/Dockerfile +1 -1
- data/lib/hello_rusty_world/greeting.rb +9 -0
- data/lib/hello_rusty_world/version.rb +1 -1
- data/lib/hello_rusty_world.rb +1 -0
- data/mise.toml +2 -0
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9690043b914b1e83b2f2d715425591f35c5900e1b75a527346918f1f02665e3
|
|
4
|
+
data.tar.gz: e025153a139d3cd27950ecbd60e6550c1979a006a39462d7da424cafa4f246b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 656aadd8c2a3f1e8a10c6f7e8e16b9ca96d03fd67e0f54578f7426c33faaf5ae74acdf6f93342684a3d13410d202d74f02b51e7e1991b1a400e869cfcd742310
|
|
7
|
+
data.tar.gz: 1706313198727a9023aa9ae1b8f8e5fd59315230f049c467460097deabfb20918d379908bcb3169e44143bd4084a597aebd92c740c06877381d94844c1230007
|
data/Cargo.toml
CHANGED
|
@@ -6,8 +6,11 @@
|
|
|
6
6
|
members = ["./ext/hello_rusty_world"]
|
|
7
7
|
resolver = "2"
|
|
8
8
|
|
|
9
|
+
[profile.dev]
|
|
10
|
+
debug = true
|
|
11
|
+
|
|
9
12
|
[profile.release]
|
|
10
13
|
# By default, debug symbols are stripped from the final binary which makes it
|
|
11
14
|
# harder to debug if something goes wrong. It's recommended to keep debug
|
|
12
15
|
# symbols in the release build so that you can debug the final binary if needed.
|
|
13
|
-
debug =
|
|
16
|
+
debug = false
|
data/docker/dev/Dockerfile
CHANGED
data/lib/hello_rusty_world.rb
CHANGED
data/mise.toml
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hello_rusty_world
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ken C. Demanawa
|
|
@@ -47,15 +47,17 @@ files:
|
|
|
47
47
|
- ext/hello_rusty_world/extconf.rb
|
|
48
48
|
- ext/hello_rusty_world/src/lib.rs
|
|
49
49
|
- lib/hello_rusty_world.rb
|
|
50
|
+
- lib/hello_rusty_world/greeting.rb
|
|
50
51
|
- lib/hello_rusty_world/version.rb
|
|
52
|
+
- mise.toml
|
|
51
53
|
- sig/hello_rusty_world.rbs
|
|
52
|
-
homepage: https://github.com/
|
|
54
|
+
homepage: https://kanutocd.github.com/hello_rusty_world
|
|
53
55
|
licenses:
|
|
54
56
|
- MIT
|
|
55
57
|
metadata:
|
|
56
|
-
homepage_uri: https://github.com/
|
|
58
|
+
homepage_uri: https://kanutocd.github.com/hello_rusty_world
|
|
57
59
|
source_code_uri: https://github.com/kanutocd/hello_rusty_world
|
|
58
|
-
changelog_uri: https://github.com/kanutocd/hello_rusty_world
|
|
60
|
+
changelog_uri: https://github.com/kanutocd/hello_rusty_world/blob/trunk/CHANGELOG.md
|
|
59
61
|
rdoc_options: []
|
|
60
62
|
require_paths:
|
|
61
63
|
- lib
|