-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext-filters.gemspec
38 lines (28 loc) · 1.15 KB
/
context-filters.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
35
36
37
38
#!/usr/bin/env ruby
# -*- encoding: utf-8 -*-
# stub: ruby-hooks ruby lib
=begin
Copyright 2014 Michal Papis <mpapis@gmail.com>
See the file LICENSE for copying permission.
=end
lib = File.expand_path("../lib/", __FILE__)
$:.unshift lib unless $:.include?(lib)
require "context-filters/version"
Gem::Specification.new do |spec|
spec.name = "context-filters"
spec.version = ::ContextFilters::VERSION
spec.licenses = ["MIT"]
spec.authors = ["Michal Papis"]
spec.email = ["mpapis@gmail.com"]
spec.homepage = "https://github.com/remote-exec/context-filters"
spec.summary = "Generic support for filters applied in context"
spec.required_ruby_version = ">=1.9.3"
spec.add_development_dependency("guard", "~>2.6")
spec.add_development_dependency("guard-minitest", "~>2.3")
spec.add_development_dependency("guard-yard", "~>2.1")
spec.add_development_dependency("minitest", "~>5.4")
spec.add_development_dependency("mocha", "~>1.1")
spec.add_development_dependency("rake", "~>10.3")
spec.files = Dir.glob("lib/**/*.rb")
spec.test_files = Dir.glob("test/**/*.rb")
end