Skip to content

Commit 6023842

Browse files
committed
Fix dependencies
1 parent ebc2824 commit 6023842

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@ source "https://rubygems.org"
44

55
gemspec
66

7+
gem "rake"
8+
gem "rspec"
79
gem "simplecov", require: false
810
gem "standard"

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ PATH
22
remote: .
33
specs:
44
errbit_github_plugin (0.4.0)
5+
activesupport
56
errbit_plugin
67
faraday-retry
78
octokit
@@ -142,7 +143,6 @@ PLATFORMS
142143
x86_64-linux-musl
143144

144145
DEPENDENCIES
145-
activesupport
146146
errbit_github_plugin!
147147
rake
148148
rspec

errbit_github_plugin.gemspec

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,5 @@ Gem::Specification.new do |spec|
2222
spec.add_dependency "errbit_plugin"
2323
spec.add_dependency "faraday-retry"
2424
spec.add_dependency "octokit"
25-
26-
spec.add_development_dependency "rspec"
27-
spec.add_development_dependency "rake"
28-
spec.add_development_dependency "activesupport"
25+
spec.add_dependency "activesupport"
2926
end

lib/errbit_github_plugin/issue_tracker.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# frozen_string_literal: true
22

3+
require "active_support/core_ext/object/blank"
34
require "octokit"
45

56
module ErrbitGithubPlugin

spec/spec_helper.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
require "errbit_plugin"
1414
require "errbit_github_plugin"
15-
require "active_support/core_ext/object/blank"
1615

1716
RSpec.configure do |config|
1817
# Enable flags like --only-failures and --next-failure

0 commit comments

Comments
 (0)