-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcondi.gemspec
26 lines (21 loc) · 1009 Bytes
/
condi.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/condi/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Larry Kyrala"]
gem.email = ["[email protected]"]
gem.description = %q{Conditional UI predicates for Rails - a clean and simple approach to separate business logic from your views and models.}
gem.summary = %q{Lightweight rules engine for Rails}
gem.homepage = "https://github.com/coldnebo/condi"
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.name = "condi"
gem.require_paths = ["lib"]
gem.version = Condi::VERSION
gem.add_dependency 'actionpack'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'redcarpet'
gem.add_development_dependency 'simplecov'
end