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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 91216ec916750554769d25f5da10c19e963e4829bb1eb486b726abad0103f518
4
- data.tar.gz: efc2aeaea282013f03b90b3ab5a2abfcc0847c1cd8d40cf68ee95983fe832b37
3
+ metadata.gz: c9690043b914b1e83b2f2d715425591f35c5900e1b75a527346918f1f02665e3
4
+ data.tar.gz: e025153a139d3cd27950ecbd60e6550c1979a006a39462d7da424cafa4f246b0
5
5
  SHA512:
6
- metadata.gz: a00df152fd10eb539008643a8c1ce4cd7dcb77db5376c16a78556de4b97aae6f87ded0a93c6bc6d8ab34072ca7f3d1513129dc2ec58676740de35b4625577a06
7
- data.tar.gz: f85c13d107ab094109a9720cf2021acb8fd72bac2960861890ebc5c72ae91128c408d6169912200e1773662203251095c26899e524deea9c3411cd8565d66b6b
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 = true
16
+ debug = false
@@ -25,7 +25,7 @@ RUN rustup target add \
25
25
  x86_64-unknown-linux-gnu \
26
26
  aarch64-unknown-linux-gnu \
27
27
  x86_64-unknown-linux-musl \
28
- aarch64-unknown-linux-musl
28
+ aarch64-unknown-linux-musl
29
29
 
30
30
  RUN groupadd --gid ${USER_GID} ${USERNAME}
31
31
  RUN useradd --uid ${USER_UID} \
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module HelloRustyWorld
4
+ class Greeting
5
+ def say
6
+ puts "Hello World!"
7
+ end
8
+ end
9
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HelloRustyWorld
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -2,6 +2,7 @@
2
2
 
3
3
  require_relative "hello_rusty_world/version"
4
4
  require "hello_rusty_world/hello_rusty_world"
5
+ require "hello_rusty_world/greeting"
5
6
 
6
7
  module HelloRustyWorld
7
8
  class Error < StandardError; end
data/mise.toml ADDED
@@ -0,0 +1,2 @@
1
+ [tools]
2
+ ruby = "4"
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.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/kanutocd/hello_rusty_world
54
+ homepage: https://kanutocd.github.com/hello_rusty_world
53
55
  licenses:
54
56
  - MIT
55
57
  metadata:
56
- homepage_uri: https://github.com/kanutocd/hello_rusty_world
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