-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
polaris_view_components.gemspec
36 lines (29 loc) · 1.41 KB
/
polaris_view_components.gemspec
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
27
28
29
30
31
32
33
34
35
36
require_relative "lib/polaris/view_components/version"
Gem::Specification.new do |spec|
spec.name = "polaris_view_components"
spec.version = Polaris::ViewComponents::VERSION
spec.authors = ["Dan Gamble", "Kirill Platonov"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/baoagency/polaris-view-components"
spec.summary = "ViewComponents for Polaris Design System"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "https://rubygems.org"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.files = Dir["lib/**/*", "app/**/*", "config/**/*", "LICENSE.txt", "README.md"]
spec.required_ruby_version = ">= 2.7.0"
spec.add_runtime_dependency "rails", ">= 5.0.0"
spec.add_runtime_dependency "view_component", ">= 3.0.0", "< 4.0.0"
spec.add_development_dependency "webdrivers", "~> 5.0"
spec.add_development_dependency "selenium-webdriver", "~> 4.1"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "pry"
spec.add_development_dependency "sprockets-rails"
spec.add_development_dependency "kamal", "~> 2.0.0"
spec.add_development_dependency "dotenv"
end