-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathruby2html.gemspec
33 lines (26 loc) · 1.24 KB
/
ruby2html.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
32
33
# frozen_string_literal: true
require_relative 'lib/gem/ruby2html/version'
Gem::Specification.new do |spec|
spec.name = 'ruby2html'
spec.version = Ruby2html::VERSION
spec.authors = ['sebi']
spec.email = ['[email protected]']
spec.summary = 'Transform Ruby code into beautiful, structured HTML'
spec.description = 'Ruby2HTML empowers developers to write view logic in pure Ruby, ' \
'seamlessly converting it into clean, well-formatted HTML. ' \
'Enhance your templating workflow, improve readability, and ' \
'leverage the full power of Ruby in your views. ' \
'Features include Rails integration, custom component support, ' \
'and automatic HTML beautification.'
spec.homepage = 'https://github.com/sebyx07/ruby2html'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
gemspec = File.basename(__FILE__)
spec.files = Dir.glob('{lib}/gem/**/*') + [gemspec]
spec.require_paths = ['lib/gem']
spec.add_dependency 'htmlbeautifier', '>= 1.4'
end