Skip to content

Commit c7b9c99

Browse files
committed
Standard
1 parent d43f616 commit c7b9c99

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

errbit_plugin.gemspec

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
# frozen_string_literal: true
22

3-
lib = File.expand_path('../lib', __FILE__)
3+
lib = File.expand_path("../lib", __FILE__)
44
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5-
require 'errbit_plugin/version'
5+
require "errbit_plugin/version"
66

77
Gem::Specification.new do |spec|
8-
spec.name = "errbit_plugin"
9-
spec.version = ErrbitPlugin::VERSION
10-
spec.authors = ["Stephen Crosby"]
11-
spec.email = ["[email protected]"]
12-
spec.description = %q{Base to create an errbit plugin}
13-
spec.summary = %q{Base to create an errbit plugin}
14-
spec.homepage = "http://github.com/errbit/errbit"
15-
spec.license = "MIT"
8+
spec.name = "errbit_plugin"
9+
spec.version = ErrbitPlugin::VERSION
10+
spec.authors = ["Stephen Crosby"]
11+
spec.email = ["[email protected]"]
12+
spec.description = "Base to create an errbit plugin"
13+
spec.summary = "Base to create an errbit plugin"
14+
spec.homepage = "http://github.com/errbit/errbit"
15+
spec.license = "MIT"
1616

17-
spec.files = `git ls-files`.split($/)
18-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17+
spec.files = `git ls-files`.split($/)
18+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
2019
spec.require_paths = ["lib"]
2120
end

0 commit comments

Comments
 (0)