We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2910cfb commit ba7af89Copy full SHA for ba7af89
1 file changed
amq-protocol.gemspec
@@ -1,8 +1,6 @@
1
#!/usr/bin/env gem build
2
# encoding: utf-8
3
4
-require "base64"
5
-
6
require File.expand_path("../lib/amq/protocol/version", __FILE__)
7
8
Gem::Specification.new do |s|
@@ -20,7 +18,7 @@ Gem::Specification.new do |s|
20
18
s.required_ruby_version = Gem::Requirement.new(">= 2.2")
21
19
22
# files
23
- s.files = `git ls-files`.split("\n").reject { |file| file =~ /^vendor\// }
+ s.files = Dir.glob("lib/**/*.rb") + %w[LICENSE README.md ChangeLog.md]
24
s.require_paths = ["lib"]
25
26
s.extra_rdoc_files = ["README.md"] + Dir.glob("doc/*")
0 commit comments