Skip to content

Commit

Permalink
actually including all of the subfiles in lib/cloudsight in the gem
Browse files Browse the repository at this point in the history
  • Loading branch information
cweilemann committed Aug 11, 2017
1 parent 5625e0f commit d773362
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
12 changes: 4 additions & 8 deletions cloudsight.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,10 @@ Gem::Specification.new do |s|
s.license = 'MIT'
s.platform = Gem::Platform::RUBY

s.files = [
'lib/cloudsight.rb',
'Gemfile',
'Gemfile.lock',
'MIT-LICENSE',
'README.md',
'cloudsight.gemspec'
]
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})

s.require_paths = [%q{lib}]

s.required_ruby_version = Gem::Requirement.new('>= 1.9.1')
Expand Down
6 changes: 3 additions & 3 deletions lib/cloudsight.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def base_url
end
end

require_relative './cloudsight/api'
require_relative './cloudsight/request'
require_relative './cloudsight/response'
require 'cloudsight/api'
require 'cloudsight/request'
require 'cloudsight/response'

class ResponseException < Exception; end
class UnexpectedResponseException < Exception; end
Expand Down
2 changes: 1 addition & 1 deletion lib/cloudsight/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Cloudsight
VERSION = "0.0.8.2"
VERSION = "0.0.9"
end

0 comments on commit d773362

Please sign in to comment.