kabustation_client 1.0.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -29,11 +29,15 @@ Gem::Specification.new do |s|
29
29
  s.metadata = {}
30
30
 
31
31
  s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
32
+ s.add_runtime_dependency 'websocket-client-simple'
32
33
 
33
34
  s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
34
35
 
35
- s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
36
+ s.files = Dir.chdir(File.expand_path(__dir__)) do
37
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
38
+ end
36
39
  s.test_files = `find spec/*`.split("\n")
37
- s.executables = []
40
+ s.bindir = "exe"
41
+ s.executables = s.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
38
42
  s.require_paths = ["lib"]
39
43
  end