-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_view_component.gemspec
More file actions
26 lines (21 loc) · 932 Bytes
/
inline_view_component.gemspec
File metadata and controls
26 lines (21 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "inline_view_component/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "inline_view_component"
spec.version = InlineViewComponent::VERSION
spec.authors = ["Rafe Rosen"]
spec.email = ["rafe@hey.com"]
spec.homepage = "http://github.com/existentialmutt/inline_view_component"
spec.summary = %q{Include template strings in Rails ViewComponent class definitions}
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5"
spec.add_dependency "activesupport", ">= 5.0.0"
spec.add_dependency "view_component", "~> 2"
spec.add_development_dependency "pg"
spec.add_development_dependency "haml-rails"
spec.add_development_dependency "slim"
spec.add_development_dependency "standard"
end