-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
railsui.gemspec
31 lines (28 loc) · 1.09 KB
/
railsui.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
# frozen_string_literal: true
require_relative "lib/railsui/version"
Gem::Specification.new do |spec|
spec.name = "railsui"
spec.version = Railsui::VERSION
spec.authors = ["Andy Leverenz"]
spec.email = ["[email protected]"]
spec.summary = "Plug and play UI for Rails"
spec.description = "Professionally designed UI components and templates for Ruby on Rails."
spec.homepage = "https://railsui.com"
spec.metadata = {
"homepage_uri" => "https://railsui.com",
"documentation_uri" => "https://railsui.com/docs",
"mailing_list_uri" => "https://railsui.com/updates"
}
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.required_ruby_version = '>= 2.7.0'
spec.require_paths = ["lib"]
spec.license = "Unlicense" # https://choosealicense.com/no-permission/
spec.add_dependency 'rails', '>= 7.0'
spec.add_dependency 'psych'
spec.add_dependency 'meta-tags'
spec.add_dependency 'railsui_icon'
end