-
Notifications
You must be signed in to change notification settings - Fork 1
/
rquery.gemspec
37 lines (29 loc) · 956 Bytes
/
rquery.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
Gem::Specification.new do |s|
s.name = "rquery"
s.version = "0.3.5"
s.date = "2010-01-14"
s.summary = "An ActiveRecord extension providing a DSL replacement for complex find queries."
s.description = ""
s.authors = [ "John bender" ]
s.email = "[email protected]"
s.homepage = "http://github.com/johnbender/rquery"
s.has_rdoc = false
s.files = %w(
README.markdown
rakefile.rb
lib/rquery.rb
lib/rquery/attribute_collection.rb
lib/rquery/active_record.rb
lib/rquery/active_record/base.rb
lib/rquery/adapters.rb
lib/rquery/adapters/sql.rb
lib/rquery/adapters/sqlite.rb
lib/rquery/operation_collector.rb
lib/rquery/operations_group.rb
spec/active_record_base_attribute_collection_spec.rb
spec/or_and_operations_spec.rb
spec/sqlite_adapter_spec.rb
spec/sniper_scope_spec.rb
spec/spec_helper.rb
)
end