Skip to content

Commit e9f7a04

Browse files
author
Pedro Pablo Bustamante Barrera
committed
feat: update gemspec and README.md
1 parent eba0f52 commit e9f7a04

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

Gemfile.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ GEM
5454

5555
PLATFORMS
5656
x86_64-linux
57+
arm64-darwin-23
58+
ruby
5759

5860
DEPENDENCIES
5961
eventmachine (= 1.2.7)
@@ -64,4 +66,4 @@ DEPENDENCIES
6466
test-unit (= 3.6.2)
6567

6668
BUNDLED WITH
67-
2.3.5
69+
2.5.4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ gem install cryptomarket-sdk
1414

1515
# Documentation
1616

17-
This sdk makes use of the [api version 2](https://api.exchange.cryptomkt.com/v2) of cryptomarket
17+
This sdk makes use of the [api version 3](https://api.exchange.cryptomkt.com/) of cryptomarket
1818

1919
# Quick Start
2020

cryptomarket-sdk.gemspec

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,23 @@ $:.push File.expand_path("../lib", __FILE__)
33

44
Gem::Specification.new do |s|
55
s.name = "cryptomarket-sdk"
6-
s.version = "1.0.0"
6+
s.version = "3.0.0"
77
s.platform = Gem::Platform::RUBY
88
s.authors = ["T. Ismael Verdugo"]
99
s.email = ["[email protected]"]
1010
s.homepage = "https://github.com/cryptomkt/cryptomkt-ruby"
1111
s.summary = %q{Cryptomarket sdk for ruby}
1212
s.description = %q{Cryptomarket sdk for rest connection and websocket connection for the ruby language}
1313

14-
1514
s.files = %w[LICENSE.md README.md] + Dir.glob('lib/**/*.rb')
1615

17-
s.add_dependency 'rest-client', '~> 2.1'
18-
s.add_dependency 'faye-websocket', '~> 0.11.0'
16+
s.add_dependency 'rest-client', '~> 2.1.0'
17+
s.add_dependency 'faye-websocket', '~> 0.11.3'
18+
s.add_dependency 'eventmachine', '~> 1.2.7'
19+
s.add_dependency 'openssl', '~> 3.2.0'
20+
21+
s.add_development_dependency 'rubocop', '~> 1.60.2'
22+
s.add_development_dependency 'test-unit', '~> 3.6.2'
1923

2024
s.extra_rdoc_files = %w[README.md]
2125
s.rdoc_options = %w[--main README.md --markup markdown]

0 commit comments

Comments
 (0)