rails_agnostic_models 0.0.6 → 0.0.7
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/README.md
CHANGED
@@ -36,6 +36,11 @@ class MyModel < ActiveRecord::Base
|
|
36
36
|
|
37
37
|
# single table inheritance, set_inheritance_column in rails 2, self.inheritance_column= in Rails 3+
|
38
38
|
version_agnostic_inheritance_column "type_inheritance"
|
39
|
+
|
40
|
+
# sends the options hash onto default_scope in Rails 2
|
41
|
+
# translates to an arel method chain in Rails 3+
|
42
|
+
# Currenlty only :order and :conditions are supported
|
43
|
+
version_agnostic_default_scope(:order => "created_at DESC", :conditions => {:active => true})
|
39
44
|
end
|
40
45
|
```
|
41
46
|
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module RailsAgnosticModels
|
2
2
|
module ActiveRecordExtensions
|
3
3
|
module ClassMethods
|
4
|
+
require 'ostruct'
|
4
5
|
|
5
6
|
# Checks if the host app is a Rails 2 app
|
6
7
|
def rails_2?
|
@@ -82,6 +83,15 @@ module RailsAgnosticModels
|
|
82
83
|
end
|
83
84
|
end
|
84
85
|
|
86
|
+
# passes an options hash to rails 2, translates to an arel call in Rails 3
|
87
|
+
def version_agnostic_default_scope(options = {})
|
88
|
+
if rails_2?
|
89
|
+
default_scope options
|
90
|
+
else
|
91
|
+
self.instance_eval "default_scope #{options_to_arel(options)}"
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
85
95
|
private
|
86
96
|
|
87
97
|
def drill_down_constant_lookup(constant)
|
@@ -104,6 +114,54 @@ module RailsAgnosticModels
|
|
104
114
|
Object.const_get(constant) if Object.const_defined? constant
|
105
115
|
end
|
106
116
|
|
117
|
+
def options_to_arel(options)
|
118
|
+
first_key = options.keys.first
|
119
|
+
option = OpenStruct.new
|
120
|
+
option.key = first_key
|
121
|
+
option.value = options[first_key]
|
122
|
+
code = "#{translate_arel(option)}"
|
123
|
+
options.keys.drop(1).each do |opt|
|
124
|
+
option.key = opt
|
125
|
+
option.value = options[opt]
|
126
|
+
code += ".#{translate_arel(option)}"
|
127
|
+
end
|
128
|
+
code
|
129
|
+
end
|
130
|
+
|
131
|
+
def translate_arel(option)
|
132
|
+
case option.key
|
133
|
+
when :order then "order('#{option.value}')"
|
134
|
+
when :conditions then "where(#{translate_where(option.value)})"
|
135
|
+
else ""
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
def translate_where(conditions)
|
140
|
+
case conditions
|
141
|
+
when Hash then return hash_without_braches(conditions)
|
142
|
+
when String then return "\"#{conditions}\""
|
143
|
+
when Array then return array_without_brackets(conditions)
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
def hash_without_braches(hash)
|
148
|
+
return hash.keys.inject([]) do |a, key|
|
149
|
+
a << "#{key}: #{hash[key]}"
|
150
|
+
end.join(', ')
|
151
|
+
end
|
152
|
+
|
153
|
+
def array_without_brackets(array)
|
154
|
+
return array.inject([]) do |a, value|
|
155
|
+
a << array_value(value)
|
156
|
+
end.join(", ")
|
157
|
+
end
|
158
|
+
|
159
|
+
def array_value(value)
|
160
|
+
case value
|
161
|
+
when String then return "\"#{value}\""
|
162
|
+
else return value
|
163
|
+
end
|
164
|
+
end
|
107
165
|
end
|
108
166
|
def self.included(klass)
|
109
167
|
klass.extend(ClassMethods)
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
class Rails2Class < ActiveRecord::Base
|
4
|
+
end
|
5
|
+
class Rails3Class < ActiveRecord::Base
|
6
|
+
end
|
7
|
+
|
8
|
+
describe "#version_agnostic_default_scope" do
|
9
|
+
context "Rails 2" do
|
10
|
+
before { stub_const("Rails::VERSION::MAJOR", 2) }
|
11
|
+
let(:hash) { {order: "my_column desc"} }
|
12
|
+
it "passes the options hash to Rails2 classes" do
|
13
|
+
Rails2Class.should_receive(:default_scope).with(hash)
|
14
|
+
Rails2Class.send(:version_agnostic_default_scope, hash)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
context "Rails 3" do
|
18
|
+
before { stub_const("Rails::VERSION::MAJOR", 3) }
|
19
|
+
describe "order" do
|
20
|
+
let(:hash) { {order: "my_column desc"} }
|
21
|
+
let(:arel) { "default_scope order('#{hash[:order]}')" }
|
22
|
+
it "converts options hash to arel calls" do
|
23
|
+
Rails3Class.should_receive(:instance_eval).with(arel)
|
24
|
+
Rails3Class.send(:version_agnostic_default_scope, hash)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
describe "where" do
|
28
|
+
context "hash" do
|
29
|
+
context "single value" do
|
30
|
+
let(:hash) { {:conditions => {active: true} } }
|
31
|
+
let(:arel) { "default_scope where(active: true)" }
|
32
|
+
it "converts options hash to arel calls" do
|
33
|
+
Rails3Class.should_receive(:instance_eval).with(arel)
|
34
|
+
Rails3Class.send(:version_agnostic_default_scope, hash)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
context "Multiple values" do
|
38
|
+
let(:hash) { {:conditions => {active: true, deleted: false} } }
|
39
|
+
let(:arel) { "default_scope where(active: true, deleted: false)" }
|
40
|
+
it "converts options hash to arel calls" do
|
41
|
+
Rails3Class.should_receive(:instance_eval).with(arel)
|
42
|
+
Rails3Class.send(:version_agnostic_default_scope, hash)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
context "String" do
|
47
|
+
let(:string) { {:conditions => "active = 1"} }
|
48
|
+
let(:code) { "default_scope where(\"active = 1\")"}
|
49
|
+
it "puts string in where method" do
|
50
|
+
Rails3Class.should_receive(:instance_eval).with(code)
|
51
|
+
Rails3Class.send(:version_agnostic_default_scope, string)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
context "Array" do
|
55
|
+
let(:array) { {:conditions => ["active = ?", 1]} }
|
56
|
+
let(:code) { "default_scope where(\"active = ?\", 1)"}
|
57
|
+
it "puts string in where method" do
|
58
|
+
Rails3Class.should_receive(:instance_eval).with(code)
|
59
|
+
Rails3Class.send(:version_agnostic_default_scope, array)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_agnostic_models
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-03-
|
12
|
+
date: 2014-03-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|
@@ -142,6 +142,7 @@ files:
|
|
142
142
|
- lib/rails_agnostic_models/version.rb
|
143
143
|
- rails_agnostic_models.gemspec
|
144
144
|
- spec/rails_agnostic_models/safe_constant_spec.rb
|
145
|
+
- spec/rails_agnostic_models/version_agnostic_default_scope_spec.rb
|
145
146
|
- spec/rails_agnostic_models/version_agnostic_inheritance_column_spec.rb
|
146
147
|
- spec/rails_agnostic_models/version_agnostic_scope_spec.rb
|
147
148
|
- spec/spec_helper.rb
|
@@ -160,7 +161,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
161
|
version: '0'
|
161
162
|
segments:
|
162
163
|
- 0
|
163
|
-
hash: -
|
164
|
+
hash: -1728372191715978669
|
164
165
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
166
|
none: false
|
166
167
|
requirements:
|
@@ -169,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
170
|
version: '0'
|
170
171
|
segments:
|
171
172
|
- 0
|
172
|
-
hash: -
|
173
|
+
hash: -1728372191715978669
|
173
174
|
requirements: []
|
174
175
|
rubyforge_project:
|
175
176
|
rubygems_version: 1.8.24
|
@@ -179,6 +180,7 @@ summary: Extends activerecord to provide rails-agnostic versions of common model
|
|
179
180
|
to east the pain of upgrading
|
180
181
|
test_files:
|
181
182
|
- spec/rails_agnostic_models/safe_constant_spec.rb
|
183
|
+
- spec/rails_agnostic_models/version_agnostic_default_scope_spec.rb
|
182
184
|
- spec/rails_agnostic_models/version_agnostic_inheritance_column_spec.rb
|
183
185
|
- spec/rails_agnostic_models/version_agnostic_scope_spec.rb
|
184
186
|
- spec/spec_helper.rb
|