forked from activeadmin/arbre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arbre.gemspec
29 lines (22 loc) · 929 Bytes
/
arbre.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 -*-
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "arbre/version"
Gem::Specification.new do |s|
s.name = "arbre"
s.version = Arbre::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Greg Bell"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/activeadmin/arbre"
s.summary = %q{An Object Oriented DOM Tree in Ruby}
s.description = %q{Arbre makes it easy to generate HTML directly in Ruby}
s.license = "MIT"
s.files = Dir['docs/**/*', 'lib/**/*', 'LICENSE'].reject { |f| File.directory?(f) }
s.extra_rdoc_files = %w[CHANGELOG.md README.md]
s.require_paths = ["lib"]
s.metadata = { "rubygems_mfa_required" => "true" }
s.required_ruby_version = '>= 2.7'
s.add_dependency("activesupport", ">= 3.0.0", "< 7.1")
s.add_dependency("ruby2_keywords", ">= 0.0.2", "< 1.0")
end