-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkadmin.gemspec
More file actions
26 lines (21 loc) · 1.14 KB
/
kadmin.gemspec
File metadata and controls
26 lines (21 loc) · 1.14 KB
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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'kadmin/version'
Gem::Specification.new do |s|
s.name = 'kadmin'
s.version = Kadmin::VERSION
s.authors = ['Nicolas Pepin-Perreault', 'Sergio Medina', 'Teymour Taghavi']
s.email = ['nicolas.pepin-perreault@offerista.com', 'sergio.medina@offerista.com', 'teymour.taghavi@offerista.com']
s.homepage = 'https://github.com/barcoo/kadmin'
s.summary = 'Collection of utility, configuration, etc., for admin areas'
s.description = 'Collection of utility, configuration, etc., for admin areas in a Rails application. Provides a boostrap environment, standard layout, authentication, and more.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'vendor/assets/**/*', 'test/factories/**/*', 'Rakefile', 'README.md']
# Core
s.add_dependency 'rails', '>= 4.2', '< 6'
s.add_dependency 'i18n', '~> 0.7'
# Front-end stuff
s.add_dependency 'sass-rails', '~> 5.0' # to use Sass files
s.add_dependency 'omniauth-google-oauth2', '~> 0.6' # for authentication
# Development
s.add_development_dependency 'barcoop' # always pick up the latest one
end