dolzenko 0.0.26 → 0.0.27
Sign up to get free protection for your applications and to get access to all the features.
data/dolzenko.gemspec
CHANGED
@@ -9,6 +9,6 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.homepage = "http://github.com/dolzenko/dolzenko-gem"
|
10
10
|
s.summary = "Tiny meta gem which makes dolzenko happy"
|
11
11
|
s.files = Dir.glob("lib/**/*") + %w(dolzenko.gemspec)
|
12
|
-
s.add_dependency("facets", "2.8.
|
13
|
-
s.add_dependency("activesupport", "3.0.0.
|
12
|
+
s.add_dependency("facets", "2.8.4")
|
13
|
+
s.add_dependency("activesupport", "3.0.0.rc")
|
14
14
|
end
|
@@ -141,11 +141,15 @@
|
|
141
141
|
<h2>Installation</h2>
|
142
142
|
|
143
143
|
<p>
|
144
|
-
You can get the code from my
|
144
|
+
You can get the code from my
|
145
|
+
<a href="http://github.com/dolzenko/dolzenko-gem">
|
146
|
+
eponymous gem</a>
|
147
|
+
like this
|
145
148
|
[ruby]
|
146
149
|
> gem install dolzenko
|
147
150
|
> irb
|
148
|
-
|
151
|
+
ruby-head > require 'dolzenko/django_q_object'
|
152
|
+
ruby-head > require 'dolzenko/django_f_object'
|
149
153
|
[/ruby]
|
150
154
|
</p>
|
151
155
|
|
@@ -1,4 +1,7 @@
|
|
1
1
|
# Django Q object for Rails 2, 3
|
2
|
+
#
|
3
|
+
# http://dolzhenko.org/blog/2010/07/django-f-and-q-objects-for-rails/
|
4
|
+
#
|
2
5
|
# http://docs.djangoproject.com/en/dev/topics/db/queries/#complex-lookups-with-q-objects
|
3
6
|
#
|
4
7
|
# Let's you build ORed, ANDed, and negated conditions without dropping to
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 27
|
9
|
+
version: 0.0.27
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Evgeniy Dolzhenko
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-08-10 00:00:00 +04:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -27,8 +27,8 @@ dependencies:
|
|
27
27
|
segments:
|
28
28
|
- 2
|
29
29
|
- 8
|
30
|
-
-
|
31
|
-
version: 2.8.
|
30
|
+
- 4
|
31
|
+
version: 2.8.4
|
32
32
|
type: :runtime
|
33
33
|
version_requirements: *id001
|
34
34
|
- !ruby/object:Gem::Dependency
|
@@ -42,8 +42,8 @@ dependencies:
|
|
42
42
|
- 3
|
43
43
|
- 0
|
44
44
|
- 0
|
45
|
-
-
|
46
|
-
version: 3.0.0.
|
45
|
+
- rc
|
46
|
+
version: 3.0.0.rc
|
47
47
|
type: :runtime
|
48
48
|
version_requirements: *id002
|
49
49
|
description:
|