|
1 | 1 | # frozen_string_literal: true
|
2 | 2 |
|
3 |
| -lib = File.expand_path('../lib', __FILE__) |
| 3 | +lib = File.expand_path("../lib", __FILE__) |
4 | 4 | $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5 |
| -require 'errbit_plugin/version' |
| 5 | +require "errbit_plugin/version" |
6 | 6 |
|
7 | 7 | 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" |
16 | 16 |
|
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) } |
20 | 19 | spec.require_paths = ["lib"]
|
21 | 20 | end
|
0 commit comments