-
Notifications
You must be signed in to change notification settings - Fork 54
/
show_for.gemspec
29 lines (25 loc) · 1.09 KB
/
show_for.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "show_for/version"
Gem::Specification.new do |s|
s.name = "show_for"
s.version = ShowFor::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "Wrap your objects with a helper to easily show them"
s.email = "[email protected]"
s.homepage = "http://github.com/plataformatec/show_for"
s.description = "Wrap your objects with a helper to easily show them"
s.authors = ['José Valim']
s.licenses = ["MIT"]
s.metadata = {
"homepage_uri" => "https://github.com/heartcombo/show_for",
"changelog_uri" => "https://github.com/heartcombo/show_for/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/heartcombo/show_for",
"bug_tracker_uri" => "https://github.com/heartcombo/show_for/issues",
}
s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*"]
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.5.0'
s.add_dependency('activemodel', '>= 5.2')
s.add_dependency('actionpack', '>= 5.2')
end