Sha256: 591f720eff3bbce22b3e96f1a209eb821dad7e2141f446ca54ac47f72840faef

Contents?: true

Size: 1.18 KB

Versions: 10

Compression:

Stored size: 1.18 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'acts_as_tree/version'

Gem::Specification.new do |s|
  s.name        = 'acts_as_tree'
  s.version     = ActsAsTree::VERSION
  s.authors     = ['Erik Dahlstrand', 'Rails Core', 'Mark Turner', 'Swanand Pagnis', 'Felix BĂĽnemann']
  s.email       = ['erik.dahlstrand@gmail.com', 'mark@amerine.net', 'swanand.pagnis@gmail.com', 'felix.buenemann@gmail.com']
  s.homepage    = 'https://github.com/amerine/acts_as_tree'
  s.summary     = %q{Provides a simple tree behaviour to active_record models.}
  s.description = %q{A gem that adds simple support for organizing ActiveRecord models into parent–children relationships.}

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  s.rdoc_options  = ["--charset=UTF-8"]

  s.add_dependency "activerecord", ">= 3.0.0"

  # Dependencies (installed via 'bundle install')...
  s.add_development_dependency "sqlite3"
  s.add_development_dependency "rdoc"
  s.add_development_dependency "minitest", ">= 4.7.5"
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/acts_as_tree-2.9.1/acts_as_tree.gemspec
acts_as_tree-2.9.1 acts_as_tree.gemspec
acts_as_tree-2.8.0 acts_as_tree.gemspec
acts_as_tree-2.7.1 acts_as_tree.gemspec
acts_as_tree-2.7.0 acts_as_tree.gemspec
acts_as_tree-2.6.1 acts_as_tree.gemspec
acts_as_tree-2.6.0 acts_as_tree.gemspec
acts_as_tree-2.5.1 acts_as_tree.gemspec
acts_as_tree-2.5.0 acts_as_tree.gemspec
acts_as_tree-2.4.0 acts_as_tree.gemspec