Skip to content

Commit

Permalink
Fix gemspec typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryguy committed Dec 22, 2016
1 parent 77fc645 commit b0faebb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions manageiq-ui-classic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Gem::Specification.new do |s|
s.description = "Classic UI of ManageIQ"
s.license = "Apache 2.0"

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_dependency "rails", "~> 5.0.0", ">= 5.0.0.1"
end

0 comments on commit b0faebb

Please sign in to comment.