protobuf_transpiler 1.2.2 → 1.2.3

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: f67728b36578a6f5e1d18f542ed1d9130ff516ec35eebb64626331282e9456f9
4
- data.tar.gz: d872de640c32e53439414f023a47ded762604c451c96e925eb4aca68a179b117
3
+ metadata.gz: 8af36b58902978ad5c48543368c2ccf0b1340a89bd914c85fa8482e42df46a3b
4
+ data.tar.gz: 9b68892e3c24bf3ed3bad1d8d0ce881131da5a1ab3822079c7823e6a2dfa52eb
5
5
  SHA512:
6
- metadata.gz: 89bf9db63b564a990dd0481a72ad6966dfff0a51c82cb4c9f7c2768a7bed2c779f3a5043c323fb941b59c9f59d2e114a78be3fd0c521535703068cc9ad7ab1ef
7
- data.tar.gz: 9be034984ad41dca4699011362d5d4ce424824cd9031219b460ac581e3ada1f92dd5c378d2711d1154c99b95dd60a06caa02f48e678cc0e98f096078b35fe85f
6
+ metadata.gz: 57e6660e25e6e5ffebec538efb330a4523b33392494e9abf75ff1b69b0237d215591ed75246adc87699ad581ba1844161348b36980e6d21e47a927717028d32c
7
+ data.tar.gz: f5582076c90aa7ffc0f65514b15ee47ea43cc83f95c5bf9a43f0d111380621992cdc97ed9ffc218abd28c50d364016bb8721c22cf10bb7866764186fcfc1d211
@@ -0,0 +1,19 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="Build &amp; Publish" type="ShConfigurationType">
3
+ <option name="SCRIPT_TEXT" value="gem push latest.gem --key moku_io_key --host https://gems.moku.io" />
4
+ <option name="INDEPENDENT_SCRIPT_PATH" value="true" />
5
+ <option name="SCRIPT_PATH" value="" />
6
+ <option name="SCRIPT_OPTIONS" value="" />
7
+ <option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
8
+ <option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
9
+ <option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
10
+ <option name="INTERPRETER_PATH" value="/bin/zsh" />
11
+ <option name="INTERPRETER_OPTIONS" value="" />
12
+ <option name="EXECUTE_IN_TERMINAL" value="true" />
13
+ <option name="EXECUTE_SCRIPT_FILE" value="false" />
14
+ <envs />
15
+ <method v="2">
16
+ <option name="RunConfigurationTask" enabled="true" run_configuration_name="Build" run_configuration_type="ShConfigurationType" />
17
+ </method>
18
+ </configuration>
19
+ </component>
@@ -0,0 +1,17 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="Build" type="ShConfigurationType">
3
+ <option name="SCRIPT_TEXT" value="gem build --output latest.gem" />
4
+ <option name="INDEPENDENT_SCRIPT_PATH" value="true" />
5
+ <option name="SCRIPT_PATH" value="" />
6
+ <option name="SCRIPT_OPTIONS" value="" />
7
+ <option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
8
+ <option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
9
+ <option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
10
+ <option name="INTERPRETER_PATH" value="/bin/zsh" />
11
+ <option name="INTERPRETER_OPTIONS" value="" />
12
+ <option name="EXECUTE_IN_TERMINAL" value="true" />
13
+ <option name="EXECUTE_SCRIPT_FILE" value="false" />
14
+ <envs />
15
+ <method v="2" />
16
+ </configuration>
17
+ </component>
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@
7
7
  ### New features
8
8
  ### Bug fixes
9
9
  )-->
10
+
11
+ ## 1.2.3 2025-04-14
12
+ ### Bug fixes
13
+ - Fixed service annotations
14
+
10
15
  ## 1.2.2 2025-04-10
11
16
  ### Bug fixes
12
17
  - exception from 1.2.1 version was not caught correctly
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ProtobufTranspiler
4
- VERSION = '1.2.2'
4
+ VERSION = '1.2.3'
5
5
  end
@@ -158,7 +158,7 @@ module ProtobufTranspiler
158
158
  end
159
159
 
160
160
  def module_annotations mod
161
- ignore_errors(NameError, NoMethodError) { mod.const_get('Service')&.sort }
161
+ ignore_errors(NameError, NoMethodError) { mod.const_get('Service')&.rpc_descs&.sort }
162
162
  &.map { |_, d| "\t#{d.name}(#{d.input}): #{d.output}" }
163
163
  &.prepend(mod.name.to_s)
164
164
  &.join "\n"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protobuf_transpiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moku S.r.l.
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2025-04-10 00:00:00.000000000 Z
12
+ date: 2025-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-protobuf
@@ -82,6 +82,8 @@ extensions: []
82
82
  extra_rdoc_files: []
83
83
  files:
84
84
  - ".rubocop.yml"
85
+ - ".run/Build & Publish.run.xml"
86
+ - ".run/Build.run.xml"
85
87
  - CHANGELOG.md
86
88
  - Gemfile
87
89
  - LICENSE