forked from dhampik/rails-admin-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rails-admin-scaffold.gemspec
30 lines (24 loc) · 1.07 KB
/
rails-admin-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
28
29
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "rails-admin-scaffold/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "rails-admin-scaffold"
s.version = RailsAdminScaffold::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Kirill Kalachev"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/dhampik/rails-admin-scaffold"
s.summary = "Rails admin controllers scaffolding generator"
s.description = "Rails generator which allows to scaffold admin controllers, views with proper (non-namespaced) models, helpers, tests and routes"
s.licenses = ["MIT"]
s.rubyforge_project = "rails-admin-scaffold"
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "rails", [">= 4.0"]
s.add_development_dependency "bundler", "~> 1.2"
s.add_development_dependency "rake"
s.files = Dir['LICENSE', 'README.md', 'lib/**/*']
s.test_files = Dir['test/**/*.rb']
s.require_path = 'lib'
end