Sha256: c63b32ba36a973bd026d58aa48dda9b8c3226d8f2efd5d5db87d9d4691f068b0

Contents?: true

Size: 1.24 KB

Versions: 5

Compression:

Stored size: 1.24 KB

Contents

# 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 = ['gore.sebyx@yahoo.com']

  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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ruby2html-1.5.8 ruby2html.gemspec
ruby2html-1.5.7 ruby2html.gemspec
ruby2html-1.5.6 ruby2html.gemspec
ruby2html-1.5.5 ruby2html.gemspec
ruby2html-1.5.4 ruby2html.gemspec