smart_filters 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,13 @@
1
+ ActiveRecord::Schema.define(:version => 0) do
2
+ create_table :address_books, :force => true do |t|
3
+ t.string :name
4
+ t.text :address
5
+ t.integer :zipcode
6
+ t.string :company
7
+ t.string :email
8
+ t.string :phone
9
+ t.string :domain
10
+
11
+ t.timestamps
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: smart_filters
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Rizwan Reza
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-08-28 00:00:00 +04:30
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Smart Filters is an implementation of what you see in the Smart Playlist dialog in iTunes but using ActiveRecord model as the table and columns as the data. It is wise enough to select different criteria based on the column type.
23
+ email: contact@rizwanreza.com
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - README.md
30
+ files:
31
+ - MIT-LICENSE
32
+ - Rakefile
33
+ - README.md
34
+ - app/views/shared/_filtered_results.html.erb
35
+ - lib/smart_filters/before_filter.rb
36
+ - lib/smart_filters/smart_filter.rb
37
+ - lib/smart_filters/view_helpers.rb
38
+ - lib/smart_filters.rb
39
+ - lib/tasks/smart_filters.rake
40
+ - rails/init.rb
41
+ - spec/factories.rb
42
+ - spec/lib/smart_filters_spec.rb
43
+ - spec/smart_filters_plugin.sqlite3.db
44
+ - spec/spec.opts
45
+ - spec/spec_helper.rb
46
+ - spec/support/database.yml
47
+ - spec/support/db.rb
48
+ - spec/support/debug.log
49
+ - spec/support/schema.rb
50
+ has_rdoc: true
51
+ homepage: http://github.com/Monaqasat/smart_filters
52
+ licenses: []
53
+
54
+ post_install_message:
55
+ rdoc_options: []
56
+
57
+ require_paths:
58
+ - lib
59
+ required_ruby_version: !ruby/object:Gem::Requirement
60
+ none: false
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ hash: 3
65
+ segments:
66
+ - 0
67
+ version: "0"
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ none: false
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ hash: 3
74
+ segments:
75
+ - 0
76
+ version: "0"
77
+ requirements: []
78
+
79
+ rubyforge_project:
80
+ rubygems_version: 1.3.7
81
+ signing_key:
82
+ specification_version: 3
83
+ summary: Quickly create smart filters for any ActiveRecord model.
84
+ test_files: []
85
+