Skip to content

Commit 1600cfa

Browse files
committed
Standard
1 parent 678ab19 commit 1600cfa

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

errbit_github_plugin.gemspec

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
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_github_plugin/version'
5+
require "errbit_github_plugin/version"
66

77
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"]
1212

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"
1717

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"]
2221

23-
spec.add_dependency 'errbit_plugin'
24-
spec.add_dependency 'octokit'
22+
spec.add_dependency "errbit_plugin"
23+
spec.add_dependency "octokit"
2524

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"
2928
end

0 commit comments

Comments
 (0)