|
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_github_plugin/version' |
| 5 | +require "errbit_github_plugin/version" |
6 | 6 |
|
7 | 7 | Gem::Specification.new do |spec| |
8 | | - spec.name = 'errbit_github_plugin' |
9 | | - spec.version = ErrbitGithubPlugin::VERSION |
10 | | - spec.authors = ['Stephen Crosby'] |
11 | | - spec.email = ['stevecrozz@gmail.com'] |
| 8 | + spec.name = "errbit_github_plugin" |
| 9 | + spec.version = ErrbitGithubPlugin::VERSION |
| 10 | + spec.authors = ["Stephen Crosby"] |
| 11 | + spec.email = ["stevecrozz@gmail.com"] |
12 | 12 |
|
13 | | - spec.description = %q{GitHub integration for Errbit} |
14 | | - spec.summary = %q{GitHub integration for Errbit} |
15 | | - spec.homepage = 'https://github.com/errbit/errbit_github_plugin' |
16 | | - spec.license = 'MIT' |
| 13 | + spec.description = "GitHub integration for Errbit" |
| 14 | + spec.summary = "GitHub integration for Errbit" |
| 15 | + spec.homepage = "https://github.com/errbit/errbit_github_plugin" |
| 16 | + spec.license = "MIT" |
17 | 17 |
|
18 | | - spec.files = `git ls-files`.split($/) |
19 | | - spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } |
20 | | - spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) |
21 | | - spec.require_paths = ['lib'] |
| 18 | + spec.files = `git ls-files`.split($/) |
| 19 | + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } |
| 20 | + spec.require_paths = ["lib"] |
22 | 21 |
|
23 | | - spec.add_dependency 'errbit_plugin' |
24 | | - spec.add_dependency 'octokit' |
| 22 | + spec.add_dependency "errbit_plugin" |
| 23 | + spec.add_dependency "octokit" |
25 | 24 |
|
26 | | - spec.add_development_dependency 'rspec' |
27 | | - spec.add_development_dependency 'rake' |
28 | | - spec.add_development_dependency 'activesupport' |
| 25 | + spec.add_development_dependency "rspec" |
| 26 | + spec.add_development_dependency "rake" |
| 27 | + spec.add_development_dependency "activesupport" |
29 | 28 | end |
0 commit comments