forked from refinery/refinerycms-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefinerycms-search.gemspec
38 lines (36 loc) · 1.12 KB
/
refinerycms-search.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
Gem::Specification.new do |s|
s.name = %q{refinerycms-search}
s.version = %q{0.9.8}
s.date = %q{2010-10-01}
s.summary = %q{Extra search handling for Refinery CMS}
s.description = %q{Provides extra functionality for searching your frontend website using Refinery CMS.}
s.homepage = %q{http://refinerycms.com}
s.email = %q{[email protected]}
s.authors = ["Resolve Digital"]
s.require_paths = %w(lib)
s.add_dependency 'refinerycms', '>= 0.9.8'
s.files = [
'app',
'app/controllers',
'app/controllers/search_controller.rb',
'app/helpers',
'app/helpers/search_helper.rb',
'app/models',
'app/models/search_engine.rb',
'app/views',
'app/views/search',
'app/views/search/show.html.erb',
'app/views/shared',
'app/views/shared/_search.html.erb',
'config',
'config/locales',
'config/locales/en.yml',
'config/routes.rb',
'lib',
'lib/gemspec.rb',
'lib/refinerycms-search.rb',
'readme.md',
'refinerycms-search.gemspec'
]
s.require_path = 'lib'
end