ton-sdk-ruby-smc 0.0.1 → 0.0.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91e0003227c3feec8516506fbff54aa205aaedba41e5e370651713d1e25521f3
|
4
|
+
data.tar.gz: 795d6873b56886b53c25704ff9c35ac474f8b33a58475ef159be9476b03b469a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f1803fb89f61aaab6738d8828b472a51b5d5a5213fcf93da57b0198d80963e77aa6f34047195d19b973688e998579fb73245342ce938fd1828cb4e9507822cb
|
7
|
+
data.tar.gz: e95a957cc93f3749ffbd18a8b35de2636d6f8e3177490f038152599b3cb1cb4bb3833513b160ddcb6d54ac5471f0be108e286259c57c42b8b543365fac2d1305
|
@@ -1,3 +1,26 @@
|
|
1
|
+
=begin
|
2
|
+
ton-sdk-ruby-smc – commonly used tvm contracts ruby package
|
3
|
+
|
4
|
+
Copyright (C) 2023 Oleh Hudeichuk
|
5
|
+
|
6
|
+
This file is part of ton-sdk-ruby-smc.
|
7
|
+
|
8
|
+
ton-sdk-ruby-smc is free software: you can redistribute it and/or modify
|
9
|
+
it under the terms of the GNU Lesser General Public License as
|
10
|
+
published by the Free Software Foundation, either version 3 of
|
11
|
+
the License, or (at your option) any later version.
|
12
|
+
|
13
|
+
ton-sdk-ruby-smc is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with ton-sdk-ruby-smc. If not, see <https://www.gnu.org/licenses/>.
|
20
|
+
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
1
24
|
module TonSdkRubySmc
|
2
25
|
TOKEN_ATTRIBUTES_SHA256 = {
|
3
26
|
uri: "70e5d7b6a29b392f85076fe15ca2f2053c56c2338728c4e33c9e8ddb1ee827cc",
|
@@ -1,3 +1,26 @@
|
|
1
|
+
=begin
|
2
|
+
ton-sdk-ruby-smc – commonly used tvm contracts ruby package
|
3
|
+
|
4
|
+
Copyright (C) 2023 Oleh Hudeichuk
|
5
|
+
|
6
|
+
This file is part of ton-sdk-ruby-smc.
|
7
|
+
|
8
|
+
ton-sdk-ruby-smc is free software: you can redistribute it and/or modify
|
9
|
+
it under the terms of the GNU Lesser General Public License as
|
10
|
+
published by the Free Software Foundation, either version 3 of
|
11
|
+
the License, or (at your option) any later version.
|
12
|
+
|
13
|
+
ton-sdk-ruby-smc is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with ton-sdk-ruby-smc. If not, see <https://www.gnu.org/licenses/>.
|
20
|
+
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
1
24
|
module TonSdkRubySmc
|
2
25
|
def require_type(name, value, type)
|
3
26
|
raise "#{name} must be #{type}" unless value.is_a?(type)
|
@@ -1,3 +1,26 @@
|
|
1
|
+
=begin
|
2
|
+
ton-sdk-ruby-smc – commonly used tvm contracts ruby package
|
3
|
+
|
4
|
+
Copyright (C) 2023 Oleh Hudeichuk
|
5
|
+
|
6
|
+
This file is part of ton-sdk-ruby-smc.
|
7
|
+
|
8
|
+
ton-sdk-ruby-smc is free software: you can redistribute it and/or modify
|
9
|
+
it under the terms of the GNU Lesser General Public License as
|
10
|
+
published by the Free Software Foundation, either version 3 of
|
11
|
+
the License, or (at your option) any later version.
|
12
|
+
|
13
|
+
ton-sdk-ruby-smc is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
GNU Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General Public License
|
19
|
+
along with ton-sdk-ruby-smc. If not, see <https://www.gnu.org/licenses/>.
|
20
|
+
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
1
24
|
module TonSdkRubySmc
|
2
25
|
include TonSdkRuby
|
3
26
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ton-sdk-ruby-smc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nerzh
|
@@ -10,6 +10,20 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2023-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ton-sdk-ruby
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.0.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.0.1
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: bundler
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|