solrsam 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: solrsam
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Tommy Chheng
9
+ - Sam Dalton
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-03-09 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ requirement: &2152438020 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *2152438020
26
+ - !ruby/object:Gem::Dependency
27
+ name: activemodel
28
+ requirement: &2152437600 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *2152437600
37
+ - !ruby/object:Gem::Dependency
38
+ name: rsolr
39
+ requirement: &2152437080 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - =
43
+ - !ruby/object:Gem::Version
44
+ version: 1.0.0
45
+ type: :runtime
46
+ prerelease: false
47
+ version_requirements: *2152437080
48
+ description: solrsan is a lightweight wrapper for using Apache Solr within a Ruby
49
+ application including Rails and Sinatra.
50
+ email:
51
+ - tommy.chheng@gmail.com
52
+ - sam@quid.com
53
+ executables: []
54
+ extensions: []
55
+ extra_rdoc_files: []
56
+ files:
57
+ - .gitignore
58
+ - Gemfile
59
+ - Gemfile.lock
60
+ - LICENSE
61
+ - README.rdoc
62
+ - Rakefile
63
+ - config/solr.yml
64
+ - config/solr.yml.example
65
+ - config/solr/conf/elevate.xml
66
+ - config/solr/conf/mapping-ISOLatin1Accent.txt
67
+ - config/solr/conf/protwords.txt
68
+ - config/solr/conf/schema.xml
69
+ - config/solr/conf/solrconfig.xml
70
+ - config/solr/conf/spellings.txt
71
+ - config/solr/conf/stopwords.txt
72
+ - config/solr/conf/synonyms.txt
73
+ - config/solr/conf/xslt/example.xsl
74
+ - config/solr/conf/xslt/example_atom.xsl
75
+ - config/solr/conf/xslt/example_rss.xsl
76
+ - config/solr/conf/xslt/luke.xsl
77
+ - lib/rails/generators/solrsan/config/config_generator.rb
78
+ - lib/rails/generators/solrsan/config/templates/solr.yml
79
+ - lib/rails/generators/solrsan/config/templates/solrsan.rb
80
+ - lib/rails/generators/solrsan_generator.rb
81
+ - lib/solrsam.rb
82
+ - lib/solrsam/capistrano.rb
83
+ - lib/solrsam/config.rb
84
+ - lib/solrsam/indexer.rb
85
+ - lib/solrsam/search.rb
86
+ - lib/solrsam/version.rb
87
+ - lib/tasks/solr.rake
88
+ - solrsam.gemspec
89
+ - test/models/document.rb
90
+ - test/search_test_helper.rb
91
+ - test/test_helper.rb
92
+ - test/unit/indexer_test.rb
93
+ - test/unit/search_test.rb
94
+ homepage: http://github.com/samdalton/solrsan
95
+ licenses: []
96
+ post_install_message:
97
+ rdoc_options: []
98
+ require_paths:
99
+ - lib
100
+ required_ruby_version: !ruby/object:Gem::Requirement
101
+ none: false
102
+ requirements:
103
+ - - ! '>='
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - ! '>='
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ requirements: []
113
+ rubyforge_project: solrsam
114
+ rubygems_version: 1.8.17
115
+ signing_key:
116
+ specification_version: 3
117
+ summary: Lightweight wrapper for using Apache Solr within a Ruby application including
118
+ Rails and Sinatra.
119
+ test_files:
120
+ - test/models/document.rb
121
+ - test/search_test_helper.rb
122
+ - test/test_helper.rb
123
+ - test/unit/indexer_test.rb
124
+ - test/unit/search_test.rb