Sha256: 78bdfd3003d9a0779204fb94bb6478b3d4bb2ff57660822255c3bb18ea64d55a

Contents?: true

Size: 1.91 KB

Versions: 1

Compression:

Stored size: 1.91 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'annotate/version'

Gem::Specification.new do |s|
  s.name = 'annotate'
  s.version = Annotate.version

  s.required_ruby_version = '>= 2.2.0'
  s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
  s.authors = ['Alex Chaffee', 'Cuong Tran', 'Marcos Piccinini', 'Turadg Aleahmad', 'Jon Frisby']
  s.description = 'Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.'
  s.email = ['alex@stinky.com', 'cuong.tran@gmail.com', 'x@nofxx.com', 'turadg@aleahmad.net', 'jon@cloudability.com']
  s.executables = ['annotate']
  s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG.rdoc', 'TODO.rdoc']
  s.files = [
    'AUTHORS.rdoc',
    'CHANGELOG.rdoc',
    'LICENSE.txt',
    'README.rdoc',
    'TODO.rdoc',
    'annotate.gemspec',
    'bin/annotate',
    'lib/annotate.rb',
    'lib/annotate/active_record_patch.rb',
    'lib/annotate/annotate_models.rb',
    'lib/annotate/annotate_routes.rb',
    'lib/annotate/constants.rb',
    'lib/annotate/parser.rb',
    'lib/annotate/tasks.rb',
    'lib/annotate/version.rb',
    'lib/generators/annotate/USAGE',
    'lib/generators/annotate/install_generator.rb',
    'lib/generators/annotate/templates/auto_annotate_models.rake',
    'lib/tasks/annotate_models.rake',
    'lib/tasks/annotate_routes.rake',
    'lib/tasks/annotate_models_migrate.rake'
  ]
  s.homepage = 'http://github.com/ctran/annotate_models'
  s.licenses = ['Ruby']
  s.require_paths = ['lib']
  s.rubygems_version = '2.1.11'
  s.summary = 'Annotates Rails Models, routes, fixtures, and others based on the database schema.'

  s.specification_version = 4 if s.respond_to? :specification_version
  s.add_runtime_dependency(%q<rake>, ['>= 10.4', '< 13.0'])
  s.add_runtime_dependency(%q<activerecord>, ['>= 3.2', '< 7.0'])
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
annotate-3.0.2 annotate.gemspec