forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typus.gemspec
28 lines (23 loc) · 1.13 KB
/
typus.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'typus/version'
files = Dir['**/*'].keep_if { |file| File.file?(file) }
test_files = Dir['test/**/*'].keep_if { |file| File.file?(file) }
ignores = Dir['doc/**/*'].keep_if { |file| File.file?(file) } + %w(.travis.yml .gitignore)
Gem::Specification.new do |spec|
spec.name = 'typus'
spec.version = Typus::VERSION::STRING
spec.authors = ['Francesc Esplugas', 'Phillip Oertel']
spec.email = ['support@typuscmf.com']
spec.description = 'Ruby on Rails Admin Panel (Engine) to allow trusted users edit structured content.'
spec.summary = 'Effortless backend interface for Ruby on Rails applications. (Admin scaffold generator)'
spec.homepage = 'http://www.typuscmf.com/'
spec.license = 'MIT'
spec.platform = Gem::Platform::RUBY
spec.files = files - test_files - ignores
spec.test_files = []
spec.require_paths = ['lib']
spec.add_dependency 'rails', '~> 4.1'
spec.add_dependency 'bcrypt', '~> 3.1.5'
spec.add_dependency 'bootstrap-sass', '~> 3.3.1'
end