File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,24 @@ Gem::Specification.new do |spec|
19
19
spec . metadata [ "homepage_uri" ] = spec . homepage
20
20
spec . metadata [ "source_code_uri" ] = spec . homepage
21
21
22
- # Specify which files should be added to the gem when it is released.
23
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
- spec . files = Dir . chdir ( File . expand_path ( '..' , __FILE__ ) ) do
25
- `git ls-files -z` . split ( "\x0 " ) . reject { |f | f . match ( %r{^(test|spec|features)/} ) }
26
- end
22
+ spec . files = %w[
23
+ LICENSE.txt
24
+ drb.gemspec
25
+ lib/drb.rb
26
+ lib/drb/acl.rb
27
+ lib/drb/drb.rb
28
+ lib/drb/eq.rb
29
+ lib/drb/extserv.rb
30
+ lib/drb/extservm.rb
31
+ lib/drb/gw.rb
32
+ lib/drb/invokemethod.rb
33
+ lib/drb/observer.rb
34
+ lib/drb/ssl.rb
35
+ lib/drb/timeridconv.rb
36
+ lib/drb/unix.rb
37
+ lib/drb/version.rb
38
+ lib/drb/weakidconv.rb
39
+ ]
27
40
spec . bindir = "exe"
28
41
spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
29
42
spec . require_paths = [ "lib" ]
You can’t perform that action at this time.
0 commit comments