forked from textacular/textacular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextacular.gemspec
54 lines (47 loc) · 1.71 KB
/
textacular.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/textacular/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'textacular'
s.version = Textacular::VERSION
s.summary = 'Textacular exposes full text search capabilities from PostgreSQL'
s.description = 'Textacular exposes full text search capabilities from PostgreSQL, extending
ActiveRecord with scopes making search easy and fun!'
s.license = 'MIT'
s.authors = ['Ben Hamill', 'ecin', 'Aaron Patterson']
s.email = ['git-commits@benhamill.com', 'ecin@copypastel.com']
s.homepage = 'http://textacular.github.com/textacular'
s.files = [
'CHANGELOG.md',
'Gemfile',
'README.md',
'Rakefile',
'lib/textacular.rb',
'lib/textacular/full_text_indexer.rb',
'lib/textacular/migration_generator.rb',
'lib/textacular/postgres_module_installer.rb',
'lib/textacular/rails.rb',
'lib/textacular/searchable.rb',
'lib/textacular/tasks.rb',
'lib/textacular/trigram_installer.rb',
'lib/textacular/version.rb'
]
s.executables = []
s.test_files = [
'spec/config.yml.example',
'spec/fixtures/character.rb',
'spec/fixtures/game.rb',
'spec/fixtures/webcomic.rb',
'spec/spec_helper.rb',
'spec/textacular/searchable_spec.rb',
'spec/textacular_spec.rb'
]
s.require_paths = ['lib']
s.add_development_dependency 'pg', '~> 0.14.0'
s.add_development_dependency 'minitest', '~> 4.x'
s.add_development_dependency 'shoulda', '~> 2.11.3'
s.add_development_dependency 'rake', '~> 0.9.0'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-doc'
s.add_development_dependency 'flexmock'
s.add_dependency('activerecord', [">= 3.0", "< 4.2"])
end