-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheffective_roles.gemspec
28 lines (23 loc) · 1.25 KB
/
effective_roles.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'effective_roles/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'effective_roles'
s.version = EffectiveRoles::VERSION
s.email = ['[email protected]']
s.authors = ['Code and Effect']
s.homepage = 'https://github.com/code-and-effect/effective_roles'
s.summary = 'Assign multiple roles to any User or other ActiveRecord object. Select only the appropriate objects based on intelligent, chainable ActiveRecord::Relation finder methods.'
s.description = 'Assign multiple roles to any User or other ActiveRecord object. Select only the appropriate objects based on intelligent, chainable ActiveRecord::Relation finder methods.'
s.licenses = ['MIT']
s.files = Dir['{app,config,db,lib}/**/*'] + ['MIT-LICENSE', 'README.md']
s.add_dependency 'rails'
s.add_dependency 'effective_resources'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'devise'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'effective_test_bot'
s.add_development_dependency 'effective_developer' # Optional but suggested
s.add_development_dependency 'psych', '< 4'
end