-
Notifications
You must be signed in to change notification settings - Fork 34
/
schema_to_scaffold.gemspec
executable file
·27 lines (25 loc) · 1.2 KB
/
schema_to_scaffold.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'schema_to_scaffold/version'
Gem::Specification.new do |gem|
gem.name = "schema_to_scaffold"
gem.version = SchemaToScaffold::VERSION
gem.authors = ["João Soares", "Humberto Pinto"]
gem.email = ["jsoaresgeral@gmail.com", "hlsp999@gmail.com"]
gem.description = <<-EOD
Command line app which parses a schema.rb file obtained from your rails repo or by running rake:schema:dump
EOD
gem.summary = %q{Generate rails scaffold script from a schema.rb file.}
gem.homepage = "http://github.com/frenesim/schema_to_scaffold"
gem.bindir = "bin"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.licenses = ['MIT']
gem.required_ruby_version = '>= 1.9.3'
gem.add_runtime_dependency('activesupport', '~> 7')
gem.add_development_dependency('byebug', '~> 11')
gem.add_development_dependency('rspec', '~> 3')
gem.add_development_dependency('simplecov', '~> 0.21')
end