File: arbre.gemspec

package info (click to toggle)
ruby-arbre 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 440 kB
  • sloc: ruby: 1,716; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 875 bytes parent folder | download
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
# -*- 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       = ["gregdbell@gmail.com"]
  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.required_ruby_version = '>= 2.6'

  s.add_dependency("activesupport", ">= 3.0.0", "< 7.1")
  s.add_dependency("ruby2_keywords", ">= 0.0.2", "< 1.0")
end