brick_ftp 1.0.0.beta → 1.0.0.beta2

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: 1c4ed28b9f5dcc9a24e2e0a8d5bb2193c96a8f4f37073389189c2355fcfdd311
4
- data.tar.gz: 7ab0283efcb065f113cced95502211d2c42428369bf895d2feb3291da46dced4
3
+ metadata.gz: a1ef5df4b00b738d9a7b8974eb678950bfef8645f6ce1f4edf371425c23c17f5
4
+ data.tar.gz: d7d81defe335eec5dbfe7d2c05c71c115331d38168ab6c9f1aa37f7396f97e05
5
5
  SHA512:
6
- metadata.gz: 0c11b1d4bbfbaedd952bcac92db8178b9238bd33fc2e294d0164b092abcb3efb35188c688ae9a2b8ac2b060f3a76628297348b50a16646585f067912c2c79cdb
7
- data.tar.gz: 3541067fd5484dd587967665bbdba46770ef94f7e087353b247cb3ebf19b4f89de8bc121a52fbc4a22efbdb5cab918f1e41e46ed4076bef6c1951eb42db2f72c
6
+ metadata.gz: 5ccf332bbf3e7d6fd93aaaee8aa5df16637c706665c0245d867fa8eaac3881702ca4e67afd44ae7354f53f18a4fefaf670bc5987e3338e0589107531e28bb149
7
+ data.tar.gz: 8b50c6a5689dac058835073ab27c6abca4b609a8aabe1d8d4aa026d1b76d2c866988b0eeb3dd019d6ed5d75a2416672f17a5fc17ad3016b825db907853e713d4
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'net/http'
4
+ require 'json'
5
+
3
6
  module BrickFTP
4
7
  module RESTfulAPI
5
8
  class Client
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BrickFTP
4
- VERSION = '1.0.0.beta'
4
+ VERSION = '1.0.0.beta2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brick_ftp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta
4
+ version: 1.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - koshigoe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-08-24 00:00:00.000000000 Z
11
+ date: 2018-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -167,8 +167,7 @@ dependencies:
167
167
  description: BrickFTP's REST API client.
168
168
  email:
169
169
  - koshigoeb@gmail.com
170
- executables:
171
- - brick_ftp
170
+ executables: []
172
171
  extensions: []
173
172
  extra_rdoc_files: []
174
173
  files:
@@ -188,7 +187,6 @@ files:
188
187
  - bin/console
189
188
  - bin/setup
190
189
  - brick_ftp.gemspec
191
- - exe/brick_ftp
192
190
  - lib/brick_ftp.rb
193
191
  - lib/brick_ftp/client.rb
194
192
  - lib/brick_ftp/core_ext.rb
data/exe/brick_ftp DELETED
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- root = File.dirname(File.dirname(__FILE__))
5
- $LOAD_PATH.unshift(File.join(root, 'lib'))
6
-
7
- require 'brick_ftp'
8
-
9
- BrickFTP::CLI.start(ARGV)