mirror of
https://gitlab.com/ydkn/capistrano-rails-console.git
synced 2023-02-13 20:54:14 -05:00
fix gem file list
This commit is contained in:
parent
663a7cd563
commit
92831fe312
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
lib = File.expand_path('lib', __dir__)
|
lib = File.expand_path('lib', __dir__)
|
||||||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||||
require 'capistrano/rails/console/version'
|
require 'capistrano/rails/console/version'
|
||||||
require 'english'
|
|
||||||
|
|
||||||
Gem::Specification.new do |spec|
|
Gem::Specification.new do |spec|
|
||||||
spec.name = 'capistrano-rails-console'
|
spec.name = 'capistrano-rails-console'
|
||||||
|
@ -13,7 +12,7 @@ Gem::Specification.new do |spec|
|
||||||
spec.homepage = 'https://gitlab.com/ydkn/capistrano-rails-console'
|
spec.homepage = 'https://gitlab.com/ydkn/capistrano-rails-console'
|
||||||
spec.license = 'MIT'
|
spec.license = 'MIT'
|
||||||
|
|
||||||
spec.files = `git ls-files`.split($RS)
|
spec.files = `git ls-files`.split("\n")
|
||||||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
||||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
spec.require_paths = ['lib']
|
spec.require_paths = ['lib']
|
||||||
|
|
Loading…
Reference in a new issue