rocket_api 0.0.1.2 → 0.0.1.3

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: 5cb81f2bc9a560412bf417b9b470d7815f119dc47adf7c6f97292d339fce7081
4
- data.tar.gz: '08bf18cc0bea116a3b8cd26e9fda39633661c18261b7c3107cbb31e4332769c4'
3
+ metadata.gz: a950d67a6f2581842a3929f1ca87e24a8d3ee90bb6a8591be85814b7d484e0d6
4
+ data.tar.gz: 96949978dde0f52620f06aff9582d1a012e6d427c71c9fbf06f50dea78f4feb9
5
5
  SHA512:
6
- metadata.gz: 698f1a860a570343be71fc332ba97998e1532547d59459aced50eeb59f2cd19eca4906739102e57b4a814b335c2a13cde3a39f1e339d8d2d1226114971fe26b1
7
- data.tar.gz: 9e70b1c80171e3d9d2efcc9db12f8615be9362ae7d0af3996b9c26040fe3b6ea8e2ea2672f6883f9a4e87c8c2111f085c04e101b9a8b0ce132ee653f82739fd5
6
+ metadata.gz: 381ac4c538b0266665e683c1ae48b23b5ac3d67fce2d5a4b836923f0130db49f1819fe4e8baf88e0e3147f7e8a1b21d5094f717b83dcf21477e8f46718c21357
7
+ data.tar.gz: c33d2b6086a0b8d122b4f74e704db8d5fab3c6e8efbabaee49acfe82c02f375fd0c962006a107061762d605384c568900957042b270329705920a8af6475268e
data/bin/rocket_api CHANGED
@@ -1,8 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require './lib/rocket_api/rocket_commands'
4
- require './lib/rocket_api/constants'
5
- require './lib/rocket_api/errors'
3
+ require "rocket_api"
6
4
 
7
5
  base_command = ARGV[0]
8
6
  sub_command = ARGV[1]
@@ -1,9 +1,3 @@
1
- require './lib/rocket_api/constants'
2
- require './lib/rocket_api/commands/files'
3
- require './lib/rocket_api/commands/dirs'
4
- require './lib/rocket_api/library/gem_repo_plain_text'
5
- require './lib/rocket_api/commands/gems_dir'
6
-
7
1
  module RocketApi
8
2
  class RocketCommands
9
3
  extend RocketApi::Commands::Files
@@ -1,3 +1,3 @@
1
1
  module RocketApi
2
- VERSION = "0.0.1.2".freeze
2
+ VERSION = "0.0.1.3".freeze
3
3
  end
data/lib/rocket_api.rb CHANGED
@@ -1,7 +1,9 @@
1
- require './rocket_api/constants'
1
+ require "rocket_api/rocket_commands"
2
+ require "rocket_api/constants"
3
+ require "rocket_api/errors"
4
+ require "rocket_api/commands/files"
5
+ require "rocket_api/commands/dirs"
6
+ require "rocket_api/commands/gems_dir"
7
+ require "rocket_api/library/gem_repo_plain_text"
8
+
2
9
 
3
- module RocketApi
4
- def ping
5
- RocketApi::PONG
6
- end
7
- end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rocket_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.2
4
+ version: 0.0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Kondratev