forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypus.gemspec
29 lines (24 loc) · 1.1 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
29
# coding: utf-8
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"]
spec.email = ["[email protected]"]
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 "bcrypt-ruby", "~> 3.1.2"
spec.add_dependency "jquery-rails"
spec.add_dependency "rails", "~> 4.0.1"
end