forked from ivopt/bootstrap_admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap_admin.gemspec
25 lines (22 loc) · 1.04 KB
/
bootstrap_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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bootstrap_admin/version'
Gem::Specification.new do |gem|
gem.name = "bootstrap_admin"
gem.version = BootstrapAdmin::VERSION
gem.authors = ["Ivo Jesus", "Bruno Coelho"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Create beatifull admin sections}
gem.summary = %q{Small lib to create standard admin sections.}
gem.homepage = "https://github.com/LynxEyes/bootstrap_admin"
gem.files = `git ls-files`.split($/)
# gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency %q<rails>, [">= 3.1.0"]
gem.add_runtime_dependency %q<simple_form>, [">= 2.0.0"]
gem.add_runtime_dependency %q<haml>
gem.add_runtime_dependency %q<coffee-rails>
gem.add_runtime_dependency %q<jquery-rails>
end