forked from railsadminteam/rails_admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rails_admin.gemspec
35 lines (34 loc) · 1.64 KB
/
rails_admin.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
33
34
35
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rails_admin/version'
Gem::Specification.new do |spec|
# If you add a dependency, please maintain alphabetical order
spec.add_dependency 'builder', '~> 3.1'
spec.add_dependency 'coffee-rails', '~> 4.0'
spec.add_dependency 'font-awesome-rails', '>= 3.0'
spec.add_dependency 'haml', '~> 4.0'
spec.add_dependency 'jquery-rails', '~> 3.0'
spec.add_dependency 'jquery-ui-rails', '~> 4.0'
spec.add_dependency 'kaminari', '~> 0.14'
spec.add_dependency 'nested_form', '~> 0.3'
spec.add_dependency 'rack-pjax', '~> 0.7'
spec.add_dependency 'rails', '~> 4.0'
spec.add_dependency 'remotipart', '~> 1.0'
spec.add_dependency 'safe_yaml', '~> 1.0'
spec.add_dependency 'sass-rails', '~> 4.0'
spec.add_development_dependency 'bundler', '~> 1.0'
spec.authors = ['Erik Michaels-Ober', 'Bogdan Gaza', 'Petteri Kaapa', 'Benoit Benezech']
spec.description = %q(RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.)
spec.files = Dir['Gemfile', 'LICENSE.md', 'README.md', 'Rakefile', 'app/**/*', 'config/**/*', 'lib/**/*', 'public/**/*']
spec.licenses = %w[MIT]
spec.homepage = 'https://github.com/sferik/rails_admin'
spec.name = 'rails_admin'
spec.require_paths = %w[lib]
spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = '>= 1.8.11'
spec.summary = %q(Admin for Rails)
spec.test_files = Dir['spec/**/*'].reject { |f| f.end_with? 'log' }
spec.version = RailsAdmin::Version
end