forked from aeolus-incubator/alberich
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alberich.gemspec
34 lines (28 loc) · 1.36 KB
/
alberich.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "alberich/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "alberich"
s.version = Alberich::VERSION
s.authors = ["Scott Seago"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/aeolus-incubator/alberich"
s.license = 'MIT'
s.summary = "Model-integrated permissions infrastructure for Rails projects."
s.description = "Alberich is a model-integrated permissions engine that allows access control, and list filtering based on user and group-assigned permissions both globally and at an individual resouce level."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc", "alberich.gemspec", "Gemfile"]
s.test_files = Dir["{spec,test}/**/*"]
s.test_files.reject! { |fn| fn.match(/sqlite|tmp|log/) }
s.add_dependency "rails", "~> 3.2.11"
s.add_dependency "haml"
s.add_dependency "haml-rails"
s.add_dependency "nokogiri"
s.add_dependency "jquery-rails"
s.add_dependency "rails_warden"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "database_cleaner"
s.add_development_dependency "factory_girl_rails", "~> 4.1.0"
s.add_development_dependency "minitest"
end