attago 0.1.0 → 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/LICENSE +15 -0
- data/README.md +10 -3
- data/lib/attago/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 164f1960823a40e380de56760899fcedc375adbbcfe1707d67ae5e4ffaaa9e51
|
|
4
|
+
data.tar.gz: 166969563fc9635ed8f1362d1f6092ffdce2858e55eefdc4f3f217efc268b9ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27e90c166170d2ef7ee8c66c3d62b410e6517158473bb1bf7b719c640dd912dcb3172cc40fa674d0564ae19a5a1ed6f271e7ba1c9aa3b3e37fb4c1c22b55f100
|
|
7
|
+
data.tar.gz: 3040abcda1df72bcc2651f156b709c10dfc41b3c5c9fe049ca8a21cb01b9fa85c6947b6873f2bf2177e2f4bdaf9e334d622792503954b339a1e42dc4e84d6b1d
|
data/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Copyright (c) 2026 AttaGo
|
|
2
|
+
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") may not be
|
|
6
|
+
copied, modified, merged, published, distributed, sublicensed, or sold without
|
|
7
|
+
the prior written permission of the copyright holder.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
12
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
14
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
15
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# attago
|
|
2
2
|
|
|
3
3
|
[](https://github.com/AttaGo/attago-rb-sdk/actions/workflows/ci.yml)
|
|
4
|
-
[](https://
|
|
4
|
+
[](https://rubygems.org/gems/attago)
|
|
5
5
|
|
|
6
6
|
Ruby SDK for the [AttaGo](https://attago.bid) crypto trading dashboard API.
|
|
7
|
+
Available on [RubyGems](https://rubygems.org/gems/attago).
|
|
7
8
|
|
|
8
9
|
Go/No-Go crypto trading signals, alert subscriptions, x402 payments, webhook
|
|
9
|
-
HMAC verification, and MCP JSON-RPC 2.0
|
|
10
|
-
|
|
10
|
+
HMAC verification, and MCP JSON-RPC 2.0.
|
|
11
|
+
|
|
12
|
+
- [API Documentation](https://attago.bid/docs)
|
|
13
|
+
- [Source Code](https://github.com/AttaGo/attago-rb-sdk)
|
|
11
14
|
|
|
12
15
|
## Install
|
|
13
16
|
|
|
@@ -250,3 +253,7 @@ bundle exec rake test
|
|
|
250
253
|
# Run conformance tests (requires live API)
|
|
251
254
|
ATTAGO_BASE_URL=https://api.attago.bid ATTAGO_API_KEY=ak_... bundle exec rake conformance
|
|
252
255
|
```
|
|
256
|
+
|
|
257
|
+
## License
|
|
258
|
+
|
|
259
|
+
All rights reserved. See [LICENSE](LICENSE) for details.
|
data/lib/attago/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: attago
|
|
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
|
- AttaGo
|
|
@@ -14,16 +14,16 @@ dependencies:
|
|
|
14
14
|
name: base64
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0'
|
|
19
|
+
version: '0.2'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0'
|
|
26
|
+
version: '0.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: minitest
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -74,6 +74,7 @@ executables: []
|
|
|
74
74
|
extensions: []
|
|
75
75
|
extra_rdoc_files: []
|
|
76
76
|
files:
|
|
77
|
+
- LICENSE
|
|
77
78
|
- README.md
|
|
78
79
|
- lib/attago.rb
|
|
79
80
|
- lib/attago/agent.rb
|
|
@@ -95,7 +96,8 @@ files:
|
|
|
95
96
|
- lib/attago/webhooks.rb
|
|
96
97
|
- lib/attago/x402.rb
|
|
97
98
|
homepage: https://attago.bid
|
|
98
|
-
licenses:
|
|
99
|
+
licenses:
|
|
100
|
+
- Nonstandard
|
|
99
101
|
metadata:
|
|
100
102
|
homepage_uri: https://attago.bid
|
|
101
103
|
source_code_uri: https://github.com/AttaGo/attago-rb-sdk
|