Skip to content

Commit 63a107f

Browse files
committed
Move requiring of libs to Client module
1 parent 08cd5aa commit 63a107f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

cortex-snippets-client-ruby.gemspec

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
lib = File.expand_path('../lib', __FILE__)
33
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
44
require 'cortex/snippets/version'
5-
require 'cortex-client'
6-
require 'connection_pool'
75

86
Gem::Specification.new do |spec|
97
spec.name = 'cortex-snippets-client-ruby'

lib/cortex/snippets/client.rb

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
require 'cortex-client'
2+
require 'connection_pool'
3+
14
module Cortex
25
module Snippets
36
module Client

lib/cortex/snippets/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Cortex
22
module Snippets
3-
VERSION = '0.1.0'
3+
VERSION = '0.1.1'
44
end
55
end

0 commit comments

Comments
 (0)