forked from fawad/active_scaffold
-
Notifications
You must be signed in to change notification settings - Fork 2
/
active_scaffold.gemspec
30 lines (26 loc) · 1.39 KB
/
active_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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'active_scaffold/version'
Gem::Specification.new do |s|
s.name = %q{active_scaffold}
s.version = ActiveScaffold::Version::STRING
s.platform = Gem::Platform::RUBY
s.email = %q{activescaffold@googlegroups.com}
s.authors = ["Many, see README"]
s.homepage = %q{http://activescaffold.com}
s.summary = %q{Rails 3.2 Version of activescaffold supporting prototype and jquery}
s.description = %q{Save time and headaches, and create a more easily maintainable set of pages, with ActiveScaffold. ActiveScaffold handles all your CRUD (create, read, update, delete) user interface needs, leaving you more time to focus on more challenging (and interesting!) problems.}
s.require_paths = ["lib"]
s.files = `git ls-files {app,config,frontends,lib,public,shoulda_macros,vendor}`.split("\n") + %w[MIT-LICENSE CHANGELOG README]
s.extra_rdoc_files = [
"README"
]
s.licenses = ["MIT"]
s.test_files = `git ls-files test`.split("\n")
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_development_dependency(%q<rcov>, [">= 0"])
#s.add_runtime_dependency(%q<render_component_vho>, [">= 0"])
s.add_runtime_dependency(%q<rails>, "~> 3.2.0")
end