sort_it_out 0.9.0
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/.document +5 -0
- data/.gitignore +5 -0
- data/Histroy.txt +4 -0
- data/LICENSE +20 -0
- data/README.rdoc +76 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/lib/sort_it_out/sortable.rb +38 -0
- data/lib/sort_it_out.rb +10 -0
- data/script/console +10 -0
- data/sort_it_out.gemspec +57 -0
- data/spec/sort_it_out_spec.rb +7 -0
- data/spec/spec_helper.rb +9 -0
- metadata +78 -0
data/.document
ADDED
data/Histroy.txt
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Jason Harrelson
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
= guilded
|
2
|
+
|
3
|
+
http://github.com/midas/sort_it_out
|
4
|
+
|
5
|
+
|
6
|
+
== DESCRIPTION
|
7
|
+
|
8
|
+
Easily add sorting functionality to your Rails controller actions in a clean manner.
|
9
|
+
|
10
|
+
|
11
|
+
== FEATURES
|
12
|
+
|
13
|
+
* Specify that your controller should resolve the order clause from the params.
|
14
|
+
* Configure a default field to sort by if no sorting params are passed in.
|
15
|
+
* Map order requests to one or more other field names. Useful for aggregated fields, etc.
|
16
|
+
|
17
|
+
|
18
|
+
== REQUIREMENTS
|
19
|
+
|
20
|
+
* Rails >= 2.3
|
21
|
+
|
22
|
+
|
23
|
+
== INSTALL
|
24
|
+
|
25
|
+
gem sources -a http://gemcutter.org
|
26
|
+
sudo gem install sort_it_out
|
27
|
+
|
28
|
+
|
29
|
+
== USAGE
|
30
|
+
|
31
|
+
Add to the Rails environment file:
|
32
|
+
|
33
|
+
config.gem "sort_it_out", :source => 'http://gemcutter.org'
|
34
|
+
|
35
|
+
Simplest case:
|
36
|
+
|
37
|
+
class UsersController< ApplicationController
|
38
|
+
sortable
|
39
|
+
|
40
|
+
def index
|
41
|
+
User.find( :all, :order => @order ) # @order is set up by sort_it_out
|
42
|
+
...
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
In the previous example a before filter is run that will set up an @order variable containing a SQL fragment
|
47
|
+
for the order clause. The order clause will be set up from the parameters :order and :direction.
|
48
|
+
|
49
|
+
More complex case:
|
50
|
+
|
51
|
+
|
52
|
+
class UsersController< ApplicationController
|
53
|
+
sortable :default => :name, :map => { :name => [:name_last, :name_first, :name_middle] }
|
54
|
+
|
55
|
+
def index
|
56
|
+
User.find( :all, :order => @order ) # @order is set up by sort_it_out
|
57
|
+
...
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
In the previous example a default field to sort by is configured. Thus, if there is no :order param, the
|
62
|
+
default field is used. There is also a map set up. If the :order param is :name, then the order clause will
|
63
|
+
be built using the name_last, name_first and name_middle fields.
|
64
|
+
|
65
|
+
|
66
|
+
== LICENSE
|
67
|
+
|
68
|
+
Copyright (c) 2009 C. Jason Harrelson (midas)
|
69
|
+
|
70
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
71
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
72
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
73
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
74
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
75
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
76
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "sort_it_out"
|
8
|
+
gem.summary = %Q{Easily apply sorting to your Rails controller actions.}
|
9
|
+
gem.description = %Q{Easily apply sorting to your Rails controller actions.}
|
10
|
+
gem.email = "jason@lookforwardenterprises.com"
|
11
|
+
gem.homepage = "http://github.com/midas/sort_it_out"
|
12
|
+
gem.authors = ["Jason Harrelson"]
|
13
|
+
gem.add_development_dependency "rspec"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'spec/rake/spectask'
|
22
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
23
|
+
spec.libs << 'lib' << 'spec'
|
24
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
25
|
+
end
|
26
|
+
|
27
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
28
|
+
spec.libs << 'lib' << 'spec'
|
29
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
30
|
+
spec.rcov = true
|
31
|
+
end
|
32
|
+
|
33
|
+
task :spec => :check_dependencies
|
34
|
+
|
35
|
+
task :default => :spec
|
36
|
+
|
37
|
+
require 'rake/rdoctask'
|
38
|
+
Rake::RDocTask.new do |rdoc|
|
39
|
+
if File.exist?('VERSION')
|
40
|
+
version = File.read('VERSION')
|
41
|
+
else
|
42
|
+
version = ""
|
43
|
+
end
|
44
|
+
|
45
|
+
rdoc.rdoc_dir = 'rdoc'
|
46
|
+
rdoc.title = "sort_it_out #{version}"
|
47
|
+
rdoc.rdoc_files.include('README*')
|
48
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
49
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.9.0
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module SortItOut
|
2
|
+
module Sortable
|
3
|
+
|
4
|
+
def self.included( base )
|
5
|
+
base.extend( ActMethods )
|
6
|
+
end
|
7
|
+
|
8
|
+
module ActMethods
|
9
|
+
def sortable( options={} )
|
10
|
+
unless included_modules.include? InstanceMethods
|
11
|
+
include InstanceMethods
|
12
|
+
before_filter :resolve_sort
|
13
|
+
class_inheritable_accessor :options
|
14
|
+
end
|
15
|
+
|
16
|
+
self.options = options
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
module InstanceMethods
|
21
|
+
def resolve_sort
|
22
|
+
order = params[:order]
|
23
|
+
order = params[:order] = self.options[:default] unless order
|
24
|
+
params[:direction] = 'ASC' unless params[:direction]
|
25
|
+
@order = order.nil? ? "" : resolve_order_clause( order, params[:direction] )
|
26
|
+
end
|
27
|
+
|
28
|
+
protected
|
29
|
+
|
30
|
+
def resolve_order_clause( order, dir="ASC" )
|
31
|
+
translated = self.options[:map][order.to_sym]
|
32
|
+
order = translated unless translated.nil?
|
33
|
+
return order.is_a?( Array ) ? order.map { |field| "#{field} #{dir}" }.join( ", " ) : "#{order} #{dir}"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
data/lib/sort_it_out.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
$:.unshift(File.dirname(__FILE__)) unless
|
2
|
+
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
3
|
+
|
4
|
+
require 'sort_it_out/sortable.rb'
|
5
|
+
|
6
|
+
module SortItOut
|
7
|
+
VERSION = '0.9.0'
|
8
|
+
end
|
9
|
+
|
10
|
+
ActionController::Base.send( :include, SortItOut::Sortable ) if defined?( ActionController::Base )
|
data/script/console
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# File: script/console
|
3
|
+
irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
|
4
|
+
|
5
|
+
libs = " -r irb/completion"
|
6
|
+
# Perhaps use a console_lib to store any extra methods I may want available in the cosole
|
7
|
+
# libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
|
8
|
+
libs << " -r #{File.dirname(__FILE__) + '/../lib/sort_it_out.rb'}"
|
9
|
+
puts "Loading sort_it_out gem"
|
10
|
+
exec "#{irb} #{libs} --simple-prompt"
|
data/sort_it_out.gemspec
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{sort_it_out}
|
8
|
+
s.version = "0.9.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jason Harrelson"]
|
12
|
+
s.date = %q{2009-11-15}
|
13
|
+
s.description = %q{Easily apply sorting to your Rails controller actions.}
|
14
|
+
s.email = %q{jason@lookforwardenterprises.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"Histroy.txt",
|
23
|
+
"LICENSE",
|
24
|
+
"README.rdoc",
|
25
|
+
"Rakefile",
|
26
|
+
"VERSION",
|
27
|
+
"lib/sort_it_out.rb",
|
28
|
+
"lib/sort_it_out/sortable.rb",
|
29
|
+
"script/console",
|
30
|
+
"sort_it_out.gemspec",
|
31
|
+
"spec/sort_it_out_spec.rb",
|
32
|
+
"spec/spec_helper.rb"
|
33
|
+
]
|
34
|
+
s.homepage = %q{http://github.com/midas/sort_it_out}
|
35
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
36
|
+
s.require_paths = ["lib"]
|
37
|
+
s.rubygems_version = %q{1.3.5}
|
38
|
+
s.summary = %q{Easily apply sorting to your Rails controller actions.}
|
39
|
+
s.test_files = [
|
40
|
+
"spec/sort_it_out_spec.rb",
|
41
|
+
"spec/spec_helper.rb"
|
42
|
+
]
|
43
|
+
|
44
|
+
if s.respond_to? :specification_version then
|
45
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
46
|
+
s.specification_version = 3
|
47
|
+
|
48
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
49
|
+
s.add_development_dependency(%q<rspec>, [">= 0"])
|
50
|
+
else
|
51
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
52
|
+
end
|
53
|
+
else
|
54
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sort_it_out
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jason Harrelson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-11-15 00:00:00 -06:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rspec
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: Easily apply sorting to your Rails controller actions.
|
26
|
+
email: jason@lookforwardenterprises.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- Histroy.txt
|
38
|
+
- LICENSE
|
39
|
+
- README.rdoc
|
40
|
+
- Rakefile
|
41
|
+
- VERSION
|
42
|
+
- lib/sort_it_out.rb
|
43
|
+
- lib/sort_it_out/sortable.rb
|
44
|
+
- script/console
|
45
|
+
- sort_it_out.gemspec
|
46
|
+
- spec/sort_it_out_spec.rb
|
47
|
+
- spec/spec_helper.rb
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://github.com/midas/sort_it_out
|
50
|
+
licenses: []
|
51
|
+
|
52
|
+
post_install_message:
|
53
|
+
rdoc_options:
|
54
|
+
- --charset=UTF-8
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: "0"
|
62
|
+
version:
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: "0"
|
68
|
+
version:
|
69
|
+
requirements: []
|
70
|
+
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.3.5
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: Easily apply sorting to your Rails controller actions.
|
76
|
+
test_files:
|
77
|
+
- spec/sort_it_out_spec.rb
|
78
|
+
- spec/spec_helper.rb
|