will_filter 3.0.5 → 3.1.1
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.
- data/.gitignore +6 -0
- data/.rspec +1 -0
- data/.rvmrc +1 -0
- data/CHANGELOG.rdoc +2 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +156 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +78 -0
- data/Rakefile +68 -0
- data/app/.DS_Store +0 -0
- data/app/assets/images/.DS_Store +0 -0
- data/{public/favicon.ico → app/assets/images/will_filter/.gitkeep} +0 -0
- data/{public/will_filter/images → app/assets/images/will_filter}/buttons.png +0 -0
- data/{public/will_filter/images → app/assets/images/will_filter}/calendar.png +0 -0
- data/{public/will_filter/images → app/assets/images/will_filter}/clock.png +0 -0
- data/{public/will_filter/images → app/assets/images/will_filter}/close.gif +0 -0
- data/{public/will_filter/images → app/assets/images/will_filter}/sort_arrow_all.gif +0 -0
- data/{public/will_filter/images → app/assets/images/will_filter}/sort_bg.gif +0 -0
- data/{public/will_filter/images → app/assets/images/will_filter}/spinner.gif +0 -0
- data/{public/will_filter/javascripts/will_filter.js → app/assets/javascripts/will_filter/filter.js} +7 -7
- data/app/assets/javascripts/will_filter/filter_prototype_effects.js +38 -0
- data/app/assets/stylesheets/will_filter/actions.css.scss +27 -0
- data/app/assets/stylesheets/will_filter/buttons.css.scss +24 -0
- data/app/assets/stylesheets/will_filter/calendar.css.scss +55 -0
- data/app/assets/stylesheets/will_filter/exporter.css.scss +43 -0
- data/app/assets/stylesheets/will_filter/filter.css.scss +152 -0
- data/app/assets/stylesheets/will_filter/results.css.scss +63 -0
- data/app/controllers/{application_controller.rb → will_filter/application_controller.rb} +4 -4
- data/app/controllers/will_filter/calendar_controller.rb +1 -1
- data/app/controllers/will_filter/exporter_controller.rb +1 -1
- data/app/controllers/will_filter/filter_controller.rb +1 -7
- data/app/models/will_filter/filter.rb +12 -40
- data/app/views/.DS_Store +0 -0
- data/app/views/layouts/will_filter/application.html.erb +14 -0
- data/app/views/will_filter/.DS_Store +0 -0
- data/app/views/will_filter/calendar/.tmp__annual.html.erb.10120~ +32 -0
- data/app/views/will_filter/calendar/.tmp__annual.html.erb.2839~ +14 -0
- data/app/views/will_filter/calendar/.tmp__annual.html.erb.58862~ +14 -0
- data/app/views/will_filter/calendar/.tmp__annual.html.erb.64846~ +14 -0
- data/app/views/will_filter/calendar/.tmp__annual.html.erb.68789~ +32 -0
- data/app/views/will_filter/calendar/.tmp__annual.html.erb.93003~ +14 -0
- data/app/views/will_filter/calendar/.tmp__annual.html.erb.93827~ +32 -0
- data/app/views/will_filter/calendar/.tmp__month.html.erb.756~ +39 -0
- data/app/views/will_filter/calendar/.tmp__quarter.html.erb.69400~ +24 -0
- data/app/views/will_filter/calendar/.tmp_index.html.erb.11043~ +52 -0
- data/app/views/will_filter/calendar/.tmp_index.html.erb.33725~ +52 -0
- data/app/views/will_filter/calendar/.tmp_index.html.erb.56447~ +66 -0
- data/app/views/will_filter/calendar/.tmp_index.html.erb.85379~ +70 -0
- data/app/views/will_filter/calendar/.tmp_index.html.erb.86425~ +70 -0
- data/app/views/will_filter/calendar/.tmp_index.html.erb.95884~ +52 -0
- data/app/views/will_filter/calendar/index.html.erb +3 -3
- data/app/views/will_filter/common/.tmp__results_table.html.erb.47785~ +87 -0
- data/app/views/will_filter/common/.tmp__results_table.html.erb.88043~ +87 -0
- data/app/views/will_filter/common/.tmp__scripts.html.erb.51111~ +0 -0
- data/app/views/will_filter/common/.tmp__scripts.html.erb.6990~ +2 -0
- data/app/views/will_filter/common/.tmp__scripts.html.erb.88469~ +6 -0
- data/app/views/will_filter/common/_results_table.html.erb +6 -2
- data/app/views/will_filter/common/_scripts.html.erb +8 -2
- data/app/views/will_filter/exporter/.tmp_export.html.erb.10837~ +9 -0
- data/app/views/will_filter/exporter/.tmp_export.html.erb.1415~ +29 -0
- data/app/views/will_filter/exporter/.tmp_export.html.erb.60681~ +29 -0
- data/app/views/will_filter/exporter/.tmp_export.html.erb.61343~ +29 -0
- data/app/views/will_filter/exporter/.tmp_export_dialog.html.erb.22940~ +38 -0
- data/app/views/will_filter/exporter/.tmp_index.html.erb.13538~ +47 -0
- data/app/views/will_filter/exporter/.tmp_index.html.erb.23276~ +47 -0
- data/app/views/will_filter/exporter/.tmp_index.html.erb.28308~ +44 -0
- data/app/views/will_filter/exporter/.tmp_index.html.erb.29049~ +44 -0
- data/app/views/will_filter/exporter/index.html.erb +1 -1
- data/app/views/will_filter/filter/.tmp__condition.html.erb.24762~ +28 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.27587~ +28 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.45362~ +28 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.49252~ +28 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.58234~ +30 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.60688~ +28 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.66557~ +28 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.68032~ +30 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.73740~ +28 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.81041~ +30 -0
- data/app/views/will_filter/filter/.tmp__condition.html.erb.98638~ +28 -0
- data/app/views/will_filter/filter/.tmp__conditions.html.erb.23216~ +50 -0
- data/app/views/will_filter/filter/.tmp__conditions.html.erb.53568~ +50 -0
- data/app/views/will_filter/filter/.tmp__conditions.html.erb.5788~ +56 -0
- data/app/views/will_filter/filter/.tmp__conditions.html.erb.79521~ +50 -0
- data/app/views/will_filter/filter/.tmp__conditions.html.erb.92102~ +56 -0
- data/app/views/will_filter/filter/.tmp__conditions.html.erb.97034~ +52 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.23178~ +30 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.25113~ +31 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.29332~ +36 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.31412~ +32 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.57958~ +32 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.80588~ +30 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.89054~ +30 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.92260~ +32 -0
- data/app/views/will_filter/filter/.tmp__container.html.erb.92798~ +36 -0
- data/app/views/will_filter/filter/.tmp__filter_conditions.html.erb.70617~ +78 -0
- data/app/views/will_filter/filter/.tmp_calendar.html.erb.30839~ +66 -0
- data/app/views/will_filter/filter/.tmp_calendar.html.erb.52766~ +66 -0
- data/app/views/will_filter/filter/.tmp_calendar.html.erb.83182~ +66 -0
- data/app/views/will_filter/filter/.tmp_export_data.html.erb.50322~ +44 -0
- data/app/views/will_filter/filter/.tmp_index.html.erb.40957~ +4 -0
- data/app/views/will_filter/filter/_condition.html.erb +5 -5
- data/app/views/will_filter/filter/_conditions.html.erb +4 -7
- data/app/views/will_filter/filter/_container.html.erb +5 -5
- data/app/views/will_filter/filter/containers/_boolean.html.erb +2 -2
- data/app/views/will_filter/filter/containers/_date.html.erb +3 -5
- data/app/views/will_filter/filter/containers/_date_range.html.erb +5 -9
- data/app/views/will_filter/filter/containers/_date_time.html.erb +3 -5
- data/app/views/will_filter/filter/containers/_date_time_range.html.erb +5 -9
- data/app/views/will_filter/filter/containers/_list.html.erb +1 -1
- data/app/views/will_filter/filter/containers/_numeric_range.html.erb +3 -3
- data/app/views/will_filter/filter/containers/_text.html.erb +2 -2
- data/app/views/will_filter/filter/index.html.erb +1 -1
- data/config/routes.rb +39 -17
- data/db/migrate/20110924023807_create_will_filter_filters.rb +15 -0
- data/lib/generators/.DS_Store +0 -0
- data/lib/generators/will_filter/templates/config.yml +0 -28
- data/lib/generators/will_filter/templates/create_will_filter_filters.rb +15 -0
- data/lib/generators/will_filter/will_filter_generator.rb +27 -4
- data/lib/tasks/will_filter_tasks.rake +1 -2
- data/lib/will_filter.rb +26 -1
- data/lib/will_filter/calendar.rb +1 -1
- data/lib/will_filter/config.rb +1 -6
- data/lib/will_filter/containers/filter_list.rb +2 -2
- data/lib/will_filter/engine.rb +23 -17
- data/lib/will_filter/{common_methods.rb → extensions/action_controller_extension.rb} +18 -20
- data/lib/will_filter/extensions/action_view_extension.rb +50 -0
- data/lib/{core_ext/active_record/base.rb → will_filter/extensions/active_record_extension.rb} +22 -17
- data/lib/{core_ext/array.rb → will_filter/extensions/array_extension.rb} +1 -1
- data/lib/{application_helper.rb → will_filter/railtie.rb} +30 -20
- data/{app/helpers/application_helper.rb → lib/will_filter/version.rb} +3 -3
- data/script/rails +6 -0
- data/spec/spec_helper.rb +27 -0
- data/test/.DS_Store +0 -0
- data/test/dummy/.DS_Store +0 -0
- data/test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/actions.css.scssc +0 -0
- data/test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/buttons.css.scssc +0 -0
- data/test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/calendar.css.scssc +0 -0
- data/test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/exporter.css.scssc +0 -0
- data/test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/filter.css.scssc +0 -0
- data/test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/results.css.scssc +0 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/.DS_Store +0 -0
- data/test/dummy/app/assets/javascripts/application.js +7 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -0
- data/test/dummy/app/assets/stylesheets/kaminari.css +10 -0
- data/test/dummy/app/controllers/advanced_controller.rb +19 -0
- data/test/dummy/app/controllers/application_controller.rb +8 -0
- data/test/dummy/app/controllers/simple_controller.rb +15 -0
- data/test/dummy/app/helpers/application_helper.rb +3 -0
- data/test/dummy/app/mailers/.gitkeep +0 -0
- data/test/dummy/app/models/.gitkeep +0 -0
- data/test/dummy/app/models/event.rb +15 -0
- data/test/dummy/app/models/event_filter.rb +41 -0
- data/test/dummy/app/models/event_user.rb +10 -0
- data/test/dummy/app/models/event_user_filter.rb +40 -0
- data/test/dummy/app/models/user.rb +42 -0
- data/test/dummy/app/models/user_filter.rb +57 -0
- data/test/dummy/app/views/advanced/event_members.html.erb +2 -0
- data/test/dummy/app/views/advanced/events.html.erb +2 -0
- data/test/dummy/app/views/advanced/users.html.erb +2 -0
- data/test/dummy/app/views/advanced/users_with_actions.html.erb +12 -0
- data/test/dummy/app/views/common/_event_members.html.erb +2 -0
- data/test/dummy/app/views/common/_events.html.erb +2 -0
- data/test/dummy/app/views/common/_menu.html.erb +23 -0
- data/test/dummy/app/views/common/_users.html.erb +2 -0
- data/test/dummy/app/views/kaminari/_first_page.html.erb +11 -0
- data/test/dummy/app/views/kaminari/_gap.html.erb +8 -0
- data/test/dummy/app/views/kaminari/_last_page.html.erb +11 -0
- data/test/dummy/app/views/kaminari/_next_page.html.erb +11 -0
- data/test/dummy/app/views/kaminari/_page.html.erb +12 -0
- data/test/dummy/app/views/kaminari/_paginator.html.erb +23 -0
- data/test/dummy/app/views/kaminari/_prev_page.html.erb +11 -0
- data/test/dummy/app/views/layouts/application.html.erb +17 -0
- data/test/dummy/app/views/simple/event_members.html.erb +2 -0
- data/test/dummy/app/views/simple/events.html.erb +3 -0
- data/test/dummy/app/views/simple/users.html.erb +2 -0
- data/test/dummy/config.ru +4 -0
- data/{config → test/dummy/config}/application.rb +11 -10
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/data/female_names.txt +26 -0
- data/test/dummy/config/data/last_names.txt +50 -0
- data/test/dummy/config/data/male_names.txt +25 -0
- data/{config → test/dummy/config}/database.yml +3 -0
- data/test/dummy/config/environment.rb +5 -0
- data/{config → test/dummy/config}/environments/development.rb +8 -4
- data/{config → test/dummy/config}/environments/production.rb +24 -13
- data/{config → test/dummy/config}/environments/test.rb +9 -5
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +13 -0
- data/test/dummy/config/will_filter/config.yml +97 -0
- data/test/dummy/db/migrate/.DS_Store +0 -0
- data/test/dummy/db/migrate/20090416182137_create_users.rb +15 -0
- data/test/dummy/db/migrate/20090418042757_create_events.rb +20 -0
- data/test/dummy/db/migrate/20090418062225_create_event_users.rb +17 -0
- data/test/dummy/db/schema.rb +61 -0
- data/test/dummy/lib/assets/.gitkeep +0 -0
- data/test/dummy/lib/tasks/dummy.rake +14 -0
- data/test/dummy/log/.gitkeep +0 -0
- data/{public → test/dummy/public}/404.html +0 -0
- data/{public → test/dummy/public}/422.html +0 -0
- data/{public → test/dummy/public}/500.html +0 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/functional/welcome_controller_test.rb +9 -0
- data/test/dummy/test/unit/helpers/welcome_helper_test.rb +4 -0
- data/test/fixtures/will_filter/filters.yml +11 -0
- data/test/functional/will_filter/calendar_controller_test.rb +9 -0
- data/test/functional/will_filter/exporter_controller_test.rb +9 -0
- data/test/functional/will_filter/filter_controller_test.rb +9 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +10 -0
- data/test/unit/helpers/will_filter/calendar_helper_test.rb +6 -0
- data/test/unit/helpers/will_filter/exporter_helper_test.rb +6 -0
- data/test/unit/helpers/will_filter/filter_helper_test.rb +6 -0
- data/test/unit/will_filter/filter_test.rb +9 -0
- data/test/will_filter_test.rb +7 -0
- data/will_filter.gemspec +38 -0
- metadata +446 -45
- data/app/views/layouts/application.html.erb +0 -11
- data/config/boot.rb +0 -6
- data/config/environment.rb +0 -15
- data/lib/core_ext/object.rb +0 -34
- data/lib/generators/will_filter/templates/create_will_filter_tables.rb +0 -19
- data/public/robots.txt +0 -5
- data/public/will_filter/images/results_table_th_active.gif +0 -0
- data/public/will_filter/javascripts/will_filter_prototype_effects.js +0 -15
- data/public/will_filter/stylesheets/will_filter.css +0 -168
data/will_filter.gemspec
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
|
|
3
|
+
# Maintain your gem's version:
|
|
4
|
+
require "will_filter/version"
|
|
5
|
+
|
|
6
|
+
# Describe your gem and declare its dependencies:
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "will_filter"
|
|
9
|
+
s.version = WillFilter::VERSION
|
|
10
|
+
s.authors = ["Michael Berkovich"]
|
|
11
|
+
s.email = ["theiceberk@gmail.com"]
|
|
12
|
+
s.homepage = "https://github.com/berk/will_filter"
|
|
13
|
+
s.summary = "A filtering engine plugin for Rails 3.1"
|
|
14
|
+
s.description = "will_filter is a powerful customizable framework for filtering active_record models."
|
|
15
|
+
|
|
16
|
+
s.rubyforge_project = 'will_filter'
|
|
17
|
+
|
|
18
|
+
s.files = `git ls-files`.split("\n")
|
|
19
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
20
|
+
s.extra_rdoc_files = ['README.rdoc']
|
|
21
|
+
s.require_paths = ['lib']
|
|
22
|
+
|
|
23
|
+
s.licenses = ['MIT']
|
|
24
|
+
|
|
25
|
+
s.add_dependency 'rails', ['>= 3.1.0']
|
|
26
|
+
s.add_dependency 'kaminari', ['>= 0']
|
|
27
|
+
s.add_dependency 'sass', ['>= 0']
|
|
28
|
+
s.add_dependency 'coffee-script', ['>= 0']
|
|
29
|
+
s.add_development_dependency 'bundler', ['>= 1.0.0']
|
|
30
|
+
s.add_development_dependency 'sqlite3', ['>= 0']
|
|
31
|
+
s.add_development_dependency 'rspec', ['>= 0']
|
|
32
|
+
s.add_development_dependency 'rspec-rails', ['>= 0']
|
|
33
|
+
s.add_development_dependency 'factory_girl', ['>= 0']
|
|
34
|
+
s.add_development_dependency 'rr', ['>= 0']
|
|
35
|
+
s.add_development_dependency 'steak', ['>= 0']
|
|
36
|
+
s.add_development_dependency 'capybara', ['>= 0']
|
|
37
|
+
s.add_development_dependency 'database_cleaner', ['>= 0']
|
|
38
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: will_filter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,30 +9,266 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
date: 2011-09-29 00:00:00.000000000 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: rails
|
|
17
|
+
requirement: &2160270500 !ruby/object:Gem::Requirement
|
|
18
|
+
none: false
|
|
19
|
+
requirements:
|
|
20
|
+
- - ! '>='
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 3.1.0
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: *2160270500
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: kaminari
|
|
28
|
+
requirement: &2160269980 !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: *2160269980
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: sass
|
|
39
|
+
requirement: &2160269500 !ruby/object:Gem::Requirement
|
|
40
|
+
none: false
|
|
41
|
+
requirements:
|
|
42
|
+
- - ! '>='
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: '0'
|
|
45
|
+
type: :runtime
|
|
46
|
+
prerelease: false
|
|
47
|
+
version_requirements: *2160269500
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: coffee-script
|
|
50
|
+
requirement: &2160269020 !ruby/object:Gem::Requirement
|
|
51
|
+
none: false
|
|
52
|
+
requirements:
|
|
53
|
+
- - ! '>='
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '0'
|
|
56
|
+
type: :runtime
|
|
57
|
+
prerelease: false
|
|
58
|
+
version_requirements: *2160269020
|
|
59
|
+
- !ruby/object:Gem::Dependency
|
|
60
|
+
name: bundler
|
|
61
|
+
requirement: &2160268540 !ruby/object:Gem::Requirement
|
|
62
|
+
none: false
|
|
63
|
+
requirements:
|
|
64
|
+
- - ! '>='
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: 1.0.0
|
|
67
|
+
type: :development
|
|
68
|
+
prerelease: false
|
|
69
|
+
version_requirements: *2160268540
|
|
70
|
+
- !ruby/object:Gem::Dependency
|
|
71
|
+
name: sqlite3
|
|
72
|
+
requirement: &2160268060 !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
74
|
+
requirements:
|
|
75
|
+
- - ! '>='
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '0'
|
|
78
|
+
type: :development
|
|
79
|
+
prerelease: false
|
|
80
|
+
version_requirements: *2160268060
|
|
81
|
+
- !ruby/object:Gem::Dependency
|
|
82
|
+
name: rspec
|
|
83
|
+
requirement: &2160267580 !ruby/object:Gem::Requirement
|
|
84
|
+
none: false
|
|
85
|
+
requirements:
|
|
86
|
+
- - ! '>='
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '0'
|
|
89
|
+
type: :development
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: *2160267580
|
|
92
|
+
- !ruby/object:Gem::Dependency
|
|
93
|
+
name: rspec-rails
|
|
94
|
+
requirement: &2160267100 !ruby/object:Gem::Requirement
|
|
95
|
+
none: false
|
|
96
|
+
requirements:
|
|
97
|
+
- - ! '>='
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: '0'
|
|
100
|
+
type: :development
|
|
101
|
+
prerelease: false
|
|
102
|
+
version_requirements: *2160267100
|
|
103
|
+
- !ruby/object:Gem::Dependency
|
|
104
|
+
name: factory_girl
|
|
105
|
+
requirement: &2160266620 !ruby/object:Gem::Requirement
|
|
106
|
+
none: false
|
|
107
|
+
requirements:
|
|
108
|
+
- - ! '>='
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
type: :development
|
|
112
|
+
prerelease: false
|
|
113
|
+
version_requirements: *2160266620
|
|
114
|
+
- !ruby/object:Gem::Dependency
|
|
115
|
+
name: rr
|
|
116
|
+
requirement: &2160266140 !ruby/object:Gem::Requirement
|
|
117
|
+
none: false
|
|
118
|
+
requirements:
|
|
119
|
+
- - ! '>='
|
|
120
|
+
- !ruby/object:Gem::Version
|
|
121
|
+
version: '0'
|
|
122
|
+
type: :development
|
|
123
|
+
prerelease: false
|
|
124
|
+
version_requirements: *2160266140
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: steak
|
|
127
|
+
requirement: &2160265660 !ruby/object:Gem::Requirement
|
|
128
|
+
none: false
|
|
129
|
+
requirements:
|
|
130
|
+
- - ! '>='
|
|
131
|
+
- !ruby/object:Gem::Version
|
|
132
|
+
version: '0'
|
|
133
|
+
type: :development
|
|
134
|
+
prerelease: false
|
|
135
|
+
version_requirements: *2160265660
|
|
136
|
+
- !ruby/object:Gem::Dependency
|
|
137
|
+
name: capybara
|
|
138
|
+
requirement: &2160265180 !ruby/object:Gem::Requirement
|
|
139
|
+
none: false
|
|
140
|
+
requirements:
|
|
141
|
+
- - ! '>='
|
|
142
|
+
- !ruby/object:Gem::Version
|
|
143
|
+
version: '0'
|
|
144
|
+
type: :development
|
|
145
|
+
prerelease: false
|
|
146
|
+
version_requirements: *2160265180
|
|
147
|
+
- !ruby/object:Gem::Dependency
|
|
148
|
+
name: database_cleaner
|
|
149
|
+
requirement: &2160264700 !ruby/object:Gem::Requirement
|
|
150
|
+
none: false
|
|
151
|
+
requirements:
|
|
152
|
+
- - ! '>='
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: '0'
|
|
155
|
+
type: :development
|
|
156
|
+
prerelease: false
|
|
157
|
+
version_requirements: *2160264700
|
|
158
|
+
description: will_filter is a powerful customizable framework for filtering active_record
|
|
159
|
+
models.
|
|
160
|
+
email:
|
|
161
|
+
- theiceberk@gmail.com
|
|
16
162
|
executables: []
|
|
17
163
|
extensions: []
|
|
18
|
-
extra_rdoc_files:
|
|
164
|
+
extra_rdoc_files:
|
|
165
|
+
- README.rdoc
|
|
19
166
|
files:
|
|
20
|
-
-
|
|
167
|
+
- .gitignore
|
|
168
|
+
- .rspec
|
|
169
|
+
- .rvmrc
|
|
170
|
+
- CHANGELOG.rdoc
|
|
171
|
+
- Gemfile
|
|
172
|
+
- Gemfile.lock
|
|
173
|
+
- MIT-LICENSE
|
|
174
|
+
- README.rdoc
|
|
175
|
+
- Rakefile
|
|
176
|
+
- app/.DS_Store
|
|
177
|
+
- app/assets/images/.DS_Store
|
|
178
|
+
- app/assets/images/will_filter/.gitkeep
|
|
179
|
+
- app/assets/images/will_filter/buttons.png
|
|
180
|
+
- app/assets/images/will_filter/calendar.png
|
|
181
|
+
- app/assets/images/will_filter/clock.png
|
|
182
|
+
- app/assets/images/will_filter/close.gif
|
|
183
|
+
- app/assets/images/will_filter/sort_arrow_all.gif
|
|
184
|
+
- app/assets/images/will_filter/sort_bg.gif
|
|
185
|
+
- app/assets/images/will_filter/spinner.gif
|
|
186
|
+
- app/assets/javascripts/will_filter/filter.js
|
|
187
|
+
- app/assets/javascripts/will_filter/filter_prototype_effects.js
|
|
188
|
+
- app/assets/stylesheets/will_filter/actions.css.scss
|
|
189
|
+
- app/assets/stylesheets/will_filter/buttons.css.scss
|
|
190
|
+
- app/assets/stylesheets/will_filter/calendar.css.scss
|
|
191
|
+
- app/assets/stylesheets/will_filter/exporter.css.scss
|
|
192
|
+
- app/assets/stylesheets/will_filter/filter.css.scss
|
|
193
|
+
- app/assets/stylesheets/will_filter/results.css.scss
|
|
194
|
+
- app/controllers/will_filter/application_controller.rb
|
|
21
195
|
- app/controllers/will_filter/calendar_controller.rb
|
|
22
196
|
- app/controllers/will_filter/exporter_controller.rb
|
|
23
197
|
- app/controllers/will_filter/filter_controller.rb
|
|
24
|
-
- app/helpers/application_helper.rb
|
|
25
198
|
- app/models/will_filter/filter.rb
|
|
26
|
-
- app/views
|
|
199
|
+
- app/views/.DS_Store
|
|
200
|
+
- app/views/layouts/will_filter/application.html.erb
|
|
201
|
+
- app/views/will_filter/.DS_Store
|
|
202
|
+
- app/views/will_filter/calendar/.tmp__annual.html.erb.10120~
|
|
203
|
+
- app/views/will_filter/calendar/.tmp__annual.html.erb.2839~
|
|
204
|
+
- app/views/will_filter/calendar/.tmp__annual.html.erb.58862~
|
|
205
|
+
- app/views/will_filter/calendar/.tmp__annual.html.erb.64846~
|
|
206
|
+
- app/views/will_filter/calendar/.tmp__annual.html.erb.68789~
|
|
207
|
+
- app/views/will_filter/calendar/.tmp__annual.html.erb.93003~
|
|
208
|
+
- app/views/will_filter/calendar/.tmp__annual.html.erb.93827~
|
|
209
|
+
- app/views/will_filter/calendar/.tmp__month.html.erb.756~
|
|
210
|
+
- app/views/will_filter/calendar/.tmp__quarter.html.erb.69400~
|
|
211
|
+
- app/views/will_filter/calendar/.tmp_index.html.erb.11043~
|
|
212
|
+
- app/views/will_filter/calendar/.tmp_index.html.erb.33725~
|
|
213
|
+
- app/views/will_filter/calendar/.tmp_index.html.erb.56447~
|
|
214
|
+
- app/views/will_filter/calendar/.tmp_index.html.erb.85379~
|
|
215
|
+
- app/views/will_filter/calendar/.tmp_index.html.erb.86425~
|
|
216
|
+
- app/views/will_filter/calendar/.tmp_index.html.erb.95884~
|
|
27
217
|
- app/views/will_filter/calendar/_annual.html.erb
|
|
28
218
|
- app/views/will_filter/calendar/_month.html.erb
|
|
29
219
|
- app/views/will_filter/calendar/_quarter.html.erb
|
|
30
220
|
- app/views/will_filter/calendar/index.html.erb
|
|
221
|
+
- app/views/will_filter/common/.tmp__results_table.html.erb.47785~
|
|
222
|
+
- app/views/will_filter/common/.tmp__results_table.html.erb.88043~
|
|
223
|
+
- app/views/will_filter/common/.tmp__scripts.html.erb.51111~
|
|
224
|
+
- app/views/will_filter/common/.tmp__scripts.html.erb.6990~
|
|
225
|
+
- app/views/will_filter/common/.tmp__scripts.html.erb.88469~
|
|
31
226
|
- app/views/will_filter/common/_actions_bar.html.erb
|
|
32
227
|
- app/views/will_filter/common/_results_table.html.erb
|
|
33
228
|
- app/views/will_filter/common/_scripts.html.erb
|
|
229
|
+
- app/views/will_filter/exporter/.tmp_export.html.erb.10837~
|
|
230
|
+
- app/views/will_filter/exporter/.tmp_export.html.erb.1415~
|
|
231
|
+
- app/views/will_filter/exporter/.tmp_export.html.erb.60681~
|
|
232
|
+
- app/views/will_filter/exporter/.tmp_export.html.erb.61343~
|
|
233
|
+
- app/views/will_filter/exporter/.tmp_export_dialog.html.erb.22940~
|
|
234
|
+
- app/views/will_filter/exporter/.tmp_index.html.erb.13538~
|
|
235
|
+
- app/views/will_filter/exporter/.tmp_index.html.erb.23276~
|
|
236
|
+
- app/views/will_filter/exporter/.tmp_index.html.erb.28308~
|
|
237
|
+
- app/views/will_filter/exporter/.tmp_index.html.erb.29049~
|
|
34
238
|
- app/views/will_filter/exporter/export.html.erb
|
|
35
239
|
- app/views/will_filter/exporter/index.html.erb
|
|
240
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.24762~
|
|
241
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.27587~
|
|
242
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.45362~
|
|
243
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.49252~
|
|
244
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.58234~
|
|
245
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.60688~
|
|
246
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.66557~
|
|
247
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.68032~
|
|
248
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.73740~
|
|
249
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.81041~
|
|
250
|
+
- app/views/will_filter/filter/.tmp__condition.html.erb.98638~
|
|
251
|
+
- app/views/will_filter/filter/.tmp__conditions.html.erb.23216~
|
|
252
|
+
- app/views/will_filter/filter/.tmp__conditions.html.erb.53568~
|
|
253
|
+
- app/views/will_filter/filter/.tmp__conditions.html.erb.5788~
|
|
254
|
+
- app/views/will_filter/filter/.tmp__conditions.html.erb.79521~
|
|
255
|
+
- app/views/will_filter/filter/.tmp__conditions.html.erb.92102~
|
|
256
|
+
- app/views/will_filter/filter/.tmp__conditions.html.erb.97034~
|
|
257
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.23178~
|
|
258
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.25113~
|
|
259
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.29332~
|
|
260
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.31412~
|
|
261
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.57958~
|
|
262
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.80588~
|
|
263
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.89054~
|
|
264
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.92260~
|
|
265
|
+
- app/views/will_filter/filter/.tmp__container.html.erb.92798~
|
|
266
|
+
- app/views/will_filter/filter/.tmp__filter_conditions.html.erb.70617~
|
|
267
|
+
- app/views/will_filter/filter/.tmp_calendar.html.erb.30839~
|
|
268
|
+
- app/views/will_filter/filter/.tmp_calendar.html.erb.52766~
|
|
269
|
+
- app/views/will_filter/filter/.tmp_calendar.html.erb.83182~
|
|
270
|
+
- app/views/will_filter/filter/.tmp_export_data.html.erb.50322~
|
|
271
|
+
- app/views/will_filter/filter/.tmp_index.html.erb.40957~
|
|
36
272
|
- app/views/will_filter/filter/_condition.html.erb
|
|
37
273
|
- app/views/will_filter/filter/_conditions.html.erb
|
|
38
274
|
- app/views/will_filter/filter/_container.html.erb
|
|
@@ -46,41 +282,16 @@ files:
|
|
|
46
282
|
- app/views/will_filter/filter/containers/_numeric_range.html.erb
|
|
47
283
|
- app/views/will_filter/filter/containers/_text.html.erb
|
|
48
284
|
- app/views/will_filter/filter/index.html.erb
|
|
49
|
-
- config/application.rb
|
|
50
|
-
- config/boot.rb
|
|
51
|
-
- config/database.yml
|
|
52
|
-
- config/environment.rb
|
|
53
|
-
- config/environments/development.rb
|
|
54
|
-
- config/environments/production.rb
|
|
55
|
-
- config/environments/test.rb
|
|
56
285
|
- config/routes.rb
|
|
57
286
|
- config/will_filter/config.yml
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
- public/500.html
|
|
61
|
-
- public/favicon.ico
|
|
62
|
-
- public/robots.txt
|
|
63
|
-
- public/will_filter/images/buttons.png
|
|
64
|
-
- public/will_filter/images/calendar.png
|
|
65
|
-
- public/will_filter/images/clock.png
|
|
66
|
-
- public/will_filter/images/close.gif
|
|
67
|
-
- public/will_filter/images/results_table_th_active.gif
|
|
68
|
-
- public/will_filter/images/sort_arrow_all.gif
|
|
69
|
-
- public/will_filter/images/sort_bg.gif
|
|
70
|
-
- public/will_filter/images/spinner.gif
|
|
71
|
-
- public/will_filter/javascripts/will_filter.js
|
|
72
|
-
- public/will_filter/javascripts/will_filter_prototype_effects.js
|
|
73
|
-
- public/will_filter/stylesheets/will_filter.css
|
|
74
|
-
- lib/application_helper.rb
|
|
75
|
-
- lib/core_ext/active_record/base.rb
|
|
76
|
-
- lib/core_ext/array.rb
|
|
77
|
-
- lib/core_ext/object.rb
|
|
287
|
+
- db/migrate/20110924023807_create_will_filter_filters.rb
|
|
288
|
+
- lib/generators/.DS_Store
|
|
78
289
|
- lib/generators/will_filter/templates/config.yml
|
|
79
|
-
- lib/generators/will_filter/templates/
|
|
290
|
+
- lib/generators/will_filter/templates/create_will_filter_filters.rb
|
|
80
291
|
- lib/generators/will_filter/will_filter_generator.rb
|
|
81
292
|
- lib/tasks/will_filter_tasks.rake
|
|
293
|
+
- lib/will_filter.rb
|
|
82
294
|
- lib/will_filter/calendar.rb
|
|
83
|
-
- lib/will_filter/common_methods.rb
|
|
84
295
|
- lib/will_filter/config.rb
|
|
85
296
|
- lib/will_filter/containers/boolean.rb
|
|
86
297
|
- lib/will_filter/containers/date.rb
|
|
@@ -97,12 +308,112 @@ files:
|
|
|
97
308
|
- lib/will_filter/containers/text.rb
|
|
98
309
|
- lib/will_filter/containers/text_delimited.rb
|
|
99
310
|
- lib/will_filter/engine.rb
|
|
311
|
+
- lib/will_filter/extensions/action_controller_extension.rb
|
|
312
|
+
- lib/will_filter/extensions/action_view_extension.rb
|
|
313
|
+
- lib/will_filter/extensions/active_record_extension.rb
|
|
314
|
+
- lib/will_filter/extensions/array_extension.rb
|
|
100
315
|
- lib/will_filter/filter_condition.rb
|
|
101
316
|
- lib/will_filter/filter_container.rb
|
|
102
317
|
- lib/will_filter/filter_exception.rb
|
|
103
|
-
- lib/will_filter.rb
|
|
104
|
-
|
|
105
|
-
|
|
318
|
+
- lib/will_filter/railtie.rb
|
|
319
|
+
- lib/will_filter/version.rb
|
|
320
|
+
- script/rails
|
|
321
|
+
- spec/spec_helper.rb
|
|
322
|
+
- test/.DS_Store
|
|
323
|
+
- test/dummy/.DS_Store
|
|
324
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/actions.css.scssc
|
|
325
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/buttons.css.scssc
|
|
326
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/calendar.css.scssc
|
|
327
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/exporter.css.scssc
|
|
328
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/filter.css.scssc
|
|
329
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/results.css.scssc
|
|
330
|
+
- test/dummy/Rakefile
|
|
331
|
+
- test/dummy/app/.DS_Store
|
|
332
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
333
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
334
|
+
- test/dummy/app/assets/stylesheets/kaminari.css
|
|
335
|
+
- test/dummy/app/controllers/advanced_controller.rb
|
|
336
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
337
|
+
- test/dummy/app/controllers/simple_controller.rb
|
|
338
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
339
|
+
- test/dummy/app/mailers/.gitkeep
|
|
340
|
+
- test/dummy/app/models/.gitkeep
|
|
341
|
+
- test/dummy/app/models/event.rb
|
|
342
|
+
- test/dummy/app/models/event_filter.rb
|
|
343
|
+
- test/dummy/app/models/event_user.rb
|
|
344
|
+
- test/dummy/app/models/event_user_filter.rb
|
|
345
|
+
- test/dummy/app/models/user.rb
|
|
346
|
+
- test/dummy/app/models/user_filter.rb
|
|
347
|
+
- test/dummy/app/views/advanced/event_members.html.erb
|
|
348
|
+
- test/dummy/app/views/advanced/events.html.erb
|
|
349
|
+
- test/dummy/app/views/advanced/users.html.erb
|
|
350
|
+
- test/dummy/app/views/advanced/users_with_actions.html.erb
|
|
351
|
+
- test/dummy/app/views/common/_event_members.html.erb
|
|
352
|
+
- test/dummy/app/views/common/_events.html.erb
|
|
353
|
+
- test/dummy/app/views/common/_menu.html.erb
|
|
354
|
+
- test/dummy/app/views/common/_users.html.erb
|
|
355
|
+
- test/dummy/app/views/kaminari/_first_page.html.erb
|
|
356
|
+
- test/dummy/app/views/kaminari/_gap.html.erb
|
|
357
|
+
- test/dummy/app/views/kaminari/_last_page.html.erb
|
|
358
|
+
- test/dummy/app/views/kaminari/_next_page.html.erb
|
|
359
|
+
- test/dummy/app/views/kaminari/_page.html.erb
|
|
360
|
+
- test/dummy/app/views/kaminari/_paginator.html.erb
|
|
361
|
+
- test/dummy/app/views/kaminari/_prev_page.html.erb
|
|
362
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
363
|
+
- test/dummy/app/views/simple/event_members.html.erb
|
|
364
|
+
- test/dummy/app/views/simple/events.html.erb
|
|
365
|
+
- test/dummy/app/views/simple/users.html.erb
|
|
366
|
+
- test/dummy/config.ru
|
|
367
|
+
- test/dummy/config/application.rb
|
|
368
|
+
- test/dummy/config/boot.rb
|
|
369
|
+
- test/dummy/config/data/female_names.txt
|
|
370
|
+
- test/dummy/config/data/last_names.txt
|
|
371
|
+
- test/dummy/config/data/male_names.txt
|
|
372
|
+
- test/dummy/config/database.yml
|
|
373
|
+
- test/dummy/config/environment.rb
|
|
374
|
+
- test/dummy/config/environments/development.rb
|
|
375
|
+
- test/dummy/config/environments/production.rb
|
|
376
|
+
- test/dummy/config/environments/test.rb
|
|
377
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
378
|
+
- test/dummy/config/initializers/inflections.rb
|
|
379
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
380
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
381
|
+
- test/dummy/config/initializers/session_store.rb
|
|
382
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
383
|
+
- test/dummy/config/locales/en.yml
|
|
384
|
+
- test/dummy/config/routes.rb
|
|
385
|
+
- test/dummy/config/will_filter/config.yml
|
|
386
|
+
- test/dummy/db/migrate/.DS_Store
|
|
387
|
+
- test/dummy/db/migrate/20090416182137_create_users.rb
|
|
388
|
+
- test/dummy/db/migrate/20090418042757_create_events.rb
|
|
389
|
+
- test/dummy/db/migrate/20090418062225_create_event_users.rb
|
|
390
|
+
- test/dummy/db/schema.rb
|
|
391
|
+
- test/dummy/lib/assets/.gitkeep
|
|
392
|
+
- test/dummy/lib/tasks/dummy.rake
|
|
393
|
+
- test/dummy/log/.gitkeep
|
|
394
|
+
- test/dummy/public/404.html
|
|
395
|
+
- test/dummy/public/422.html
|
|
396
|
+
- test/dummy/public/500.html
|
|
397
|
+
- test/dummy/public/favicon.ico
|
|
398
|
+
- test/dummy/script/rails
|
|
399
|
+
- test/dummy/test/functional/welcome_controller_test.rb
|
|
400
|
+
- test/dummy/test/unit/helpers/welcome_helper_test.rb
|
|
401
|
+
- test/fixtures/will_filter/filters.yml
|
|
402
|
+
- test/functional/will_filter/calendar_controller_test.rb
|
|
403
|
+
- test/functional/will_filter/exporter_controller_test.rb
|
|
404
|
+
- test/functional/will_filter/filter_controller_test.rb
|
|
405
|
+
- test/integration/navigation_test.rb
|
|
406
|
+
- test/test_helper.rb
|
|
407
|
+
- test/unit/helpers/will_filter/calendar_helper_test.rb
|
|
408
|
+
- test/unit/helpers/will_filter/exporter_helper_test.rb
|
|
409
|
+
- test/unit/helpers/will_filter/filter_helper_test.rb
|
|
410
|
+
- test/unit/will_filter/filter_test.rb
|
|
411
|
+
- test/will_filter_test.rb
|
|
412
|
+
- will_filter.gemspec
|
|
413
|
+
has_rdoc: true
|
|
414
|
+
homepage: https://github.com/berk/will_filter
|
|
415
|
+
licenses:
|
|
416
|
+
- MIT
|
|
106
417
|
post_install_message:
|
|
107
418
|
rdoc_options: []
|
|
108
419
|
require_paths:
|
|
@@ -120,9 +431,99 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
431
|
- !ruby/object:Gem::Version
|
|
121
432
|
version: '0'
|
|
122
433
|
requirements: []
|
|
123
|
-
rubyforge_project:
|
|
124
|
-
rubygems_version: 1.
|
|
434
|
+
rubyforge_project: will_filter
|
|
435
|
+
rubygems_version: 1.6.2
|
|
125
436
|
signing_key:
|
|
126
437
|
specification_version: 3
|
|
127
|
-
summary:
|
|
128
|
-
test_files:
|
|
438
|
+
summary: A filtering engine plugin for Rails 3.1
|
|
439
|
+
test_files:
|
|
440
|
+
- spec/spec_helper.rb
|
|
441
|
+
- test/dummy/.DS_Store
|
|
442
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/actions.css.scssc
|
|
443
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/buttons.css.scssc
|
|
444
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/calendar.css.scssc
|
|
445
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/exporter.css.scssc
|
|
446
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/filter.css.scssc
|
|
447
|
+
- test/dummy/.sass-cache/f9cb1ef521115be73f1c61d3d5d64f66c947af63/results.css.scssc
|
|
448
|
+
- test/dummy/Rakefile
|
|
449
|
+
- test/dummy/app/.DS_Store
|
|
450
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
451
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
452
|
+
- test/dummy/app/assets/stylesheets/kaminari.css
|
|
453
|
+
- test/dummy/app/controllers/advanced_controller.rb
|
|
454
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
455
|
+
- test/dummy/app/controllers/simple_controller.rb
|
|
456
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
457
|
+
- test/dummy/app/mailers/.gitkeep
|
|
458
|
+
- test/dummy/app/models/.gitkeep
|
|
459
|
+
- test/dummy/app/models/event.rb
|
|
460
|
+
- test/dummy/app/models/event_filter.rb
|
|
461
|
+
- test/dummy/app/models/event_user.rb
|
|
462
|
+
- test/dummy/app/models/event_user_filter.rb
|
|
463
|
+
- test/dummy/app/models/user.rb
|
|
464
|
+
- test/dummy/app/models/user_filter.rb
|
|
465
|
+
- test/dummy/app/views/advanced/event_members.html.erb
|
|
466
|
+
- test/dummy/app/views/advanced/events.html.erb
|
|
467
|
+
- test/dummy/app/views/advanced/users.html.erb
|
|
468
|
+
- test/dummy/app/views/advanced/users_with_actions.html.erb
|
|
469
|
+
- test/dummy/app/views/common/_event_members.html.erb
|
|
470
|
+
- test/dummy/app/views/common/_events.html.erb
|
|
471
|
+
- test/dummy/app/views/common/_menu.html.erb
|
|
472
|
+
- test/dummy/app/views/common/_users.html.erb
|
|
473
|
+
- test/dummy/app/views/kaminari/_first_page.html.erb
|
|
474
|
+
- test/dummy/app/views/kaminari/_gap.html.erb
|
|
475
|
+
- test/dummy/app/views/kaminari/_last_page.html.erb
|
|
476
|
+
- test/dummy/app/views/kaminari/_next_page.html.erb
|
|
477
|
+
- test/dummy/app/views/kaminari/_page.html.erb
|
|
478
|
+
- test/dummy/app/views/kaminari/_paginator.html.erb
|
|
479
|
+
- test/dummy/app/views/kaminari/_prev_page.html.erb
|
|
480
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
481
|
+
- test/dummy/app/views/simple/event_members.html.erb
|
|
482
|
+
- test/dummy/app/views/simple/events.html.erb
|
|
483
|
+
- test/dummy/app/views/simple/users.html.erb
|
|
484
|
+
- test/dummy/config.ru
|
|
485
|
+
- test/dummy/config/application.rb
|
|
486
|
+
- test/dummy/config/boot.rb
|
|
487
|
+
- test/dummy/config/data/female_names.txt
|
|
488
|
+
- test/dummy/config/data/last_names.txt
|
|
489
|
+
- test/dummy/config/data/male_names.txt
|
|
490
|
+
- test/dummy/config/database.yml
|
|
491
|
+
- test/dummy/config/environment.rb
|
|
492
|
+
- test/dummy/config/environments/development.rb
|
|
493
|
+
- test/dummy/config/environments/production.rb
|
|
494
|
+
- test/dummy/config/environments/test.rb
|
|
495
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
496
|
+
- test/dummy/config/initializers/inflections.rb
|
|
497
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
498
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
499
|
+
- test/dummy/config/initializers/session_store.rb
|
|
500
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
501
|
+
- test/dummy/config/locales/en.yml
|
|
502
|
+
- test/dummy/config/routes.rb
|
|
503
|
+
- test/dummy/config/will_filter/config.yml
|
|
504
|
+
- test/dummy/db/migrate/.DS_Store
|
|
505
|
+
- test/dummy/db/migrate/20090416182137_create_users.rb
|
|
506
|
+
- test/dummy/db/migrate/20090418042757_create_events.rb
|
|
507
|
+
- test/dummy/db/migrate/20090418062225_create_event_users.rb
|
|
508
|
+
- test/dummy/db/schema.rb
|
|
509
|
+
- test/dummy/lib/assets/.gitkeep
|
|
510
|
+
- test/dummy/lib/tasks/dummy.rake
|
|
511
|
+
- test/dummy/log/.gitkeep
|
|
512
|
+
- test/dummy/public/404.html
|
|
513
|
+
- test/dummy/public/422.html
|
|
514
|
+
- test/dummy/public/500.html
|
|
515
|
+
- test/dummy/public/favicon.ico
|
|
516
|
+
- test/dummy/script/rails
|
|
517
|
+
- test/dummy/test/functional/welcome_controller_test.rb
|
|
518
|
+
- test/dummy/test/unit/helpers/welcome_helper_test.rb
|
|
519
|
+
- test/fixtures/will_filter/filters.yml
|
|
520
|
+
- test/functional/will_filter/calendar_controller_test.rb
|
|
521
|
+
- test/functional/will_filter/exporter_controller_test.rb
|
|
522
|
+
- test/functional/will_filter/filter_controller_test.rb
|
|
523
|
+
- test/integration/navigation_test.rb
|
|
524
|
+
- test/test_helper.rb
|
|
525
|
+
- test/unit/helpers/will_filter/calendar_helper_test.rb
|
|
526
|
+
- test/unit/helpers/will_filter/exporter_helper_test.rb
|
|
527
|
+
- test/unit/helpers/will_filter/filter_helper_test.rb
|
|
528
|
+
- test/unit/will_filter/filter_test.rb
|
|
529
|
+
- test/will_filter_test.rb
|