acts_as_indexed 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: acts_as_indexed
3
+ version: !ruby/object:Gem::Version
4
+ hash: 3
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 6
9
+ - 2
10
+ version: 0.6.2
11
+ platform: ruby
12
+ authors:
13
+ - Douglas F Shearer
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-06-11 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Acts As Indexed is a plugin which provides a pain-free way to add fulltext search to your Ruby on Rails app
23
+ email: dougal.s@gmail.com
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - README.rdoc
30
+ files:
31
+ - .gitignore
32
+ - CHANGELOG
33
+ - MIT-LICENSE
34
+ - README.rdoc
35
+ - Rakefile
36
+ - VERSION
37
+ - acts_as_indexed.gemspec
38
+ - lib/acts_as_indexed.rb
39
+ - lib/acts_as_indexed/configuration.rb
40
+ - lib/acts_as_indexed/search_atom.rb
41
+ - lib/acts_as_indexed/search_index.rb
42
+ - lib/will_paginate_search.rb
43
+ - rails/init.rb
44
+ - test/abstract_unit.rb
45
+ - test/acts_as_indexed_test.rb
46
+ - test/configuration_test.rb
47
+ - test/database.yml
48
+ - test/fixtures/post.rb
49
+ - test/fixtures/posts.yml
50
+ - test/schema.rb
51
+ - test/search_atom_test.rb
52
+ - test/search_index_test.rb
53
+ has_rdoc: true
54
+ homepage: http://github.com/dougal/acts_as_indexed
55
+ licenses: []
56
+
57
+ post_install_message:
58
+ rdoc_options:
59
+ - --charset=UTF-8
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ hash: 3
68
+ segments:
69
+ - 0
70
+ version: "0"
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ hash: 3
77
+ segments:
78
+ - 0
79
+ version: "0"
80
+ requirements: []
81
+
82
+ rubyforge_project:
83
+ rubygems_version: 1.3.7
84
+ signing_key:
85
+ specification_version: 3
86
+ summary: Acts As Indexed is a plugin which provides a pain-free way to add fulltext search to your Ruby on Rails app
87
+ test_files:
88
+ - test/abstract_unit.rb
89
+ - test/acts_as_indexed_test.rb
90
+ - test/configuration_test.rb
91
+ - test/fixtures/post.rb
92
+ - test/schema.rb
93
+ - test/search_atom_test.rb
94
+ - test/search_index_test.rb