Sha256: 457e22c368890ff87f10af256c15a4ee37604262c9033e0e39df5f70f873bde0

Contents?: true

Size: 1.15 KB

Versions: 14

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

require_relative "lib/docile/version"

Gem::Specification.new do |s|
  s.name        = "docile"
  s.version     = Docile::VERSION
  s.author      = "Marc Siegel"
  s.email       = "marc@usainnov.com"
  s.homepage    = "https://ms-ati.github.io/docile/"
  s.summary     = "Docile keeps your Ruby DSLs tame and well-behaved."
  s.description = "Docile treats the methods of a given ruby object as a DSL " \
                  "(domain specific language) within a given block. \n\n"      \
                  "Killer feature: you can also reference methods, instance "  \
                  "variables, and local variables from the original (non-DSL) "\
                  "context within the block. \n\n"                             \
                  "Docile releases follow Semantic Versioning as defined at "  \
                  "semver.org."
  s.license     = "MIT"

  # Specify oldest supported Ruby version (2.5 to support JRuby 9.2.17.0)
  s.required_ruby_version = ">= 2.5.0"

  # Files included in the gem
  s.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  s.require_paths = ["lib"]
end

Version data entries

14 entries across 11 versions & 5 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.2.4 vendor/bundle/ruby/3.1.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.2.2 vendor/bundle/ruby/3.1.0/gems/docile-1.4.0/docile.gemspec
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.2.1 vendor/bundle/ruby/3.1.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.2.0 vendor/bundle/ruby/2.7.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.2.0 vendor/bundle/ruby/3.0.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.1.7 vendor/bundle/ruby/2.7.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.1.7 vendor/bundle/ruby/3.0.0/gems/docile-1.4.0/docile.gemspec
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.1.6 vendor/bundle/ruby/3.0.0/gems/docile-1.4.0/docile.gemspec
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/docile-1.4.0/docile.gemspec
docile-1.4.0 docile.gemspec