-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdhtml.gemspec
More file actions
36 lines (29 loc) · 966 Bytes
/
dhtml.gemspec
File metadata and controls
36 lines (29 loc) · 966 Bytes
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
# frozen_string_literal: true
require_relative 'lib/dhtml/version'
Gem::Specification.new do |spec|
spec.name = 'dhtml'
spec.version = DHTML::VERSION
spec.authors = ['Travis Haynes']
spec.email = %w[travis@hi5dev.com]
spec.summary = 'A fast, simple, and elegant DSL for generating HTML using Ruby. Also compatible with Opal.'
spec.description = spec.summary
spec.homepage = 'https://www.hi5dev.com/dhtml'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/hi5dev/dhtml'
spec.metadata['changelog_uri'] = 'https://github.com/hi5dev/dhtml/blob/base/CHANGELOG.md'
spec.files = %w[
CHANGELOG.md
dhtml.gemspec
Gemfile
Gemfile.lock
lib/dhtml.rb
lib/dhtml/document.rb
lib/dhtml/opal.rb
lib/dhtml/version.rb
LICENSE.txt
README.md
]
spec.require_paths = %w[lib]
end