-
Notifications
You must be signed in to change notification settings - Fork 330
/
active_scaffold.gemspec
32 lines (29 loc) · 1.47 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
30
31
32
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'active_scaffold/version'
Gem::Specification.new do |s|
s.name = 'active_scaffold'
s.version = ActiveScaffold::Version::STRING
s.platform = Gem::Platform::RUBY
s.email = 'activescaffold@googlegroups.com'
s.authors = ['Many, see README']
s.homepage = 'https://github.com/activescaffold/active_scaffold'
s.summary = 'Rails 4.x and 5.x versions of ActiveScaffold supporting prototype and jquery'
s.description = '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/locales,lib,public,shoulda_macros,vendor}`.split("\n") + %w[LICENSE.md CHANGELOG.rdoc README.md]
s.extra_rdoc_files = [
'README.md'
]
s.license = 'MIT'
s.required_ruby_version = '>= 3.0'
# Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity.
# It encourages beautiful code by favoring convention over configuration.
s.add_dependency('rails', '>= 5.2.0')
# Deep Freeze Ruby Objects
s.add_dependency('ice_nine', '~> 0.11')
s.add_dependency('request_store', '~> 1.3')
s.add_dependency('sassc-rails', '~> 2.0')
s.metadata['rubygems_mfa_required'] = 'true'
end