arel 0.2.0 → 0.2.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/History.txt +6 -0
- data/Thorfile +2 -2
- data/arel.gemspec +6 -6
- data/lib/arel.rb +1 -1
- metadata +4 -3
data/History.txt
CHANGED
data/Thorfile
CHANGED
|
@@ -12,7 +12,7 @@ module GemHelpers
|
|
|
12
12
|
Gem::Specification.new do |s|
|
|
13
13
|
s.name = "arel"
|
|
14
14
|
s.version = Arel::VERSION
|
|
15
|
-
s.authors = ["Bryan Helmkamp", "Nick Kallen"]
|
|
15
|
+
s.authors = ["Bryan Helmkamp", "Nick Kallen", "Emilio Tagua"]
|
|
16
16
|
s.email = "bryan@brynary.com"
|
|
17
17
|
s.homepage = "http://github.com/brynary/arel"
|
|
18
18
|
s.summary = "Arel is a relational algebra engine for Ruby"
|
|
@@ -38,7 +38,7 @@ and query generation.
|
|
|
38
38
|
# circular dependency chain. The solution is for ActiveRecord to release
|
|
39
39
|
# the connection adapters which Arel uses in a separate gem
|
|
40
40
|
# s.add_dependency "activerecord", ">= 3.0.pre"
|
|
41
|
-
s.add_dependency "activesupport", ">= 3.0.
|
|
41
|
+
s.add_dependency "activesupport", ">= 3.0.0.beta"
|
|
42
42
|
end
|
|
43
43
|
end
|
|
44
44
|
|
data/arel.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{arel}
|
|
5
|
-
s.version = "0.2.
|
|
5
|
+
s.version = "0.2.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
-
s.authors = ["Bryan Helmkamp", "Nick Kallen"]
|
|
9
|
-
s.date = %q{2010-
|
|
8
|
+
s.authors = ["Bryan Helmkamp", "Nick Kallen", "Emilio Tagua"]
|
|
9
|
+
s.date = %q{2010-02-05}
|
|
10
10
|
s.description = %q{Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex
|
|
11
11
|
of SQL queries and it 2) adapts to various RDBMS systems. It is intended to be
|
|
12
12
|
a framework framework; that is, you can build your own ORM with it, focusing on
|
|
@@ -238,11 +238,11 @@ and query generation.}
|
|
|
238
238
|
s.specification_version = 3
|
|
239
239
|
|
|
240
240
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
241
|
-
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.
|
|
241
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0.beta"])
|
|
242
242
|
else
|
|
243
|
-
s.add_dependency(%q<activesupport>, [">= 3.0.
|
|
243
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.0.beta"])
|
|
244
244
|
end
|
|
245
245
|
else
|
|
246
|
-
s.add_dependency(%q<activesupport>, [">= 3.0.
|
|
246
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.0.beta"])
|
|
247
247
|
end
|
|
248
248
|
end
|
data/lib/arel.rb
CHANGED
metadata
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bryan Helmkamp
|
|
8
8
|
- Nick Kallen
|
|
9
|
+
- Emilio Tagua
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
13
|
|
|
13
|
-
date: 2010-
|
|
14
|
+
date: 2010-02-05 00:00:00 -05:00
|
|
14
15
|
default_executable:
|
|
15
16
|
dependencies:
|
|
16
17
|
- !ruby/object:Gem::Dependency
|
|
@@ -21,7 +22,7 @@ dependencies:
|
|
|
21
22
|
requirements:
|
|
22
23
|
- - ">="
|
|
23
24
|
- !ruby/object:Gem::Version
|
|
24
|
-
version: 3.0.
|
|
25
|
+
version: 3.0.0.beta
|
|
25
26
|
version:
|
|
26
27
|
description: |-
|
|
27
28
|
Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex
|