talk 2.2.5 → 2.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a80291fbc647d3d33efc33910bd6f03f59133fa
4
- data.tar.gz: 413f5cb78048b0a4f786962f63d6db7f1c9949d6
3
+ metadata.gz: 26634edebd9f331973a916b4af007a4ac8206425
4
+ data.tar.gz: aeefe102ea8f3868ced435fc2fe36559a71af4ae
5
5
  SHA512:
6
- metadata.gz: c23f63f43dbe835647da59d19e628c4533051b889c6657bc2f924f2dfbda90e9c0dc7ad50c5a00eaeb86224c251c1d9628e8e605a87180e351055c96c0d05dee
7
- data.tar.gz: 892e8693ecf5a7b8f7606e035849c102872330d8bf337c99975760477a29ddcc0ef15fcc0fb4d4d3753c750b30afd19f42e8a3ad395d3fd82ccc547dcd1f1974
6
+ metadata.gz: bd1ebe529f364a066a648ed4316581c3cb8665569b0a0a728c1d7f61922c0adb382a304349193a6f1a0677f62dce5823ca204c9510efe933dc32e3ef92128795
7
+ data.tar.gz: c338bff427292830a52313199f08d48c00690c788d97f6cdb6a9e020786595ea9dac738a182a6a63f507e571e1e36e8160df76735e72cf3589eebf4800a9e8f7
@@ -7,7 +7,7 @@ namespace com.acres4.common.protocol
7
7
  /**
8
8
  <%= method[:description] %>
9
9
  */
10
- public static readonly string <%= method[:name].sub(/^(\w)/) {|s| s.capitalize} %> = "<%= method[:name] %>";
10
+ public const string <%= method[:name].sub(/^(\w)/) {|s| s.capitalize} %> = "<%= method[:name] %>";
11
11
 
12
12
  <% end %>
13
13
  }
@@ -5,7 +5,7 @@ namespace <%= class_package(@current) %>
5
5
  public class <%= truncated_name(@current) %> : <%= rootclass %>
6
6
  {<% @current[:constant].each do |field| %>
7
7
  /** <%= field[:description] %> */
8
- public readonly static int <%= field[:name] %> = <%= field[:value].to_i %>;
8
+ public const int <%= field[:name] %> = <%= field[:value].to_i %>;
9
9
  <% end %>
10
10
  }
11
11
  }
@@ -5,6 +5,6 @@ namespace <%= class_package(@current) %>
5
5
  public class <%= truncated_name(@current) %>
6
6
  {
7
7
  <% @current[:term].each do |field| %>
8
- public readonly static string <%= field[:name] %> = "<%= field[:value] %>";<% end %>
8
+ public const string <%= field[:name] %> = "<%= field[:value] %>";<% end %>
9
9
  }
10
10
  }
@@ -1,3 +1,3 @@
1
1
  module Talk
2
- VERSION = "2.2.5"
2
+ VERSION = "2.2.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: talk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.5
4
+ version: 2.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Acres