Skip to content
Snippets Groups Projects
Commit 17b16590 authored by Tim Emiola's avatar Tim Emiola
Browse files

Corrects the way the gemspec references files

parent c54180be
No related branches found
No related tags found
No related merge requests found
...@@ -16,12 +16,15 @@ Gem::Specification.new do |s| ...@@ -16,12 +16,15 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.0.0' s.required_ruby_version = '>= 2.0.0'
s.requirements << 'libgrpc ~> 0.10.0 needs to be installed' s.requirements << 'libgrpc ~> 0.10.0 needs to be installed'
s.files = `git ls-files`.split("\n") s.files = %w( Rakefile )
s.test_files = `git ls-files -- spec/*`.split("\n") s.files += Dir.glob('lib/**/*')
s.executables = `git ls-files -- bin/*.rb`.split("\n").map do |f| s.files += Dir.glob('ext/**/*')
File.basename(f) s.files += Dir.glob('bin/**/*')
s.test_files = Dir.glob('spec/**/*')
%w(math noproto).each do |b|
s.executables += [ "#{b}_client.rb", "#{b}_server.rb" ]
end end
s.require_paths = ['lib'] s.require_paths = %w( bin lib )
s.platform = Gem::Platform::RUBY s.platform = Gem::Platform::RUBY
s.add_dependency 'google-protobuf', '~> 3.0.0alpha.1.1' s.add_dependency 'google-protobuf', '~> 3.0.0alpha.1.1'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment