forked from makandra/minidusen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminidusen.gemspec
23 lines (19 loc) · 867 Bytes
/
minidusen.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
require "minidusen/version"
Gem::Specification.new do |s|
s.name = 'minidusen'
s.version = Minidusen::VERSION
s.authors = ["Henning Koch"]
s.email = '[email protected]'
s.homepage = 'https://github.com/makandra/minidusen'
s.summary = 'Low-tech search for ActiveRecord with MySQL or PostgreSQL'
s.description = s.summary
s.license = 'MIT'
s.files = `git ls-files`.split("\n").reject { |path| File.lstat(path).symlink? }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").reject { |path| File.lstat(path).symlink? }
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency('activesupport', '>=3.2')
s.add_dependency('activerecord', '>=3.2')
s.add_dependency('edge_rider', '>=0.2.5')
end