Sha256: 48d36798f67a034e415b153eccf9fac7050b17ee33e60f5510daa23e0a5fd593

Contents?: true

Size: 1.05 KB

Versions: 2

Compression:

Stored size: 1.05 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name        = 'schematic'
  spec.version     = Schematic::VERSION
  spec.authors     = ['Case Commons, LLC']
  spec.email       = ['casecommons-dev@googlegroups.com', 'andrew@johnandrewmarshall.com']
  spec.homepage    = 'https://github.com/Casecommons/schematic'
  spec.summary     = %q{Automatic XSD generation from ActiveRecord models}
  spec.description = spec.summary
  spec.license     = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_dependency 'activerecord', '~> 4.0'
  spec.add_dependency 'builder'

  spec.add_development_dependency 'nokogiri'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec', '~> 2.14'
  spec.add_development_dependency 'sqlite3'
  spec.add_development_dependency 'with_model', '~> 1.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
schematic-0.7.1 schematic.gemspec
schematic-0.7.0 schematic.gemspec