arel 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.txt +6 -0
  2. data/Thorfile +2 -2
  3. data/arel.gemspec +6 -6
  4. data/lib/arel.rb +1 -1
  5. metadata +4 -3
@@ -1,3 +1,9 @@
1
+ == 0.2.1 / 2010-02-05
2
+
3
+ * Enhancements
4
+
5
+ * Bump dependency version of activesupport to 3.0.0.beta
6
+
1
7
  == 0.2.0 / 2010-01-31
2
8
 
3
9
  * Ruby 1.9 compatibility
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.pre"
41
+ s.add_dependency "activesupport", ">= 3.0.0.beta"
42
42
  end
43
43
  end
44
44
 
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{arel}
5
- s.version = "0.2.0"
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-01-31}
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.pre"])
241
+ s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0.beta"])
242
242
  else
243
- s.add_dependency(%q<activesupport>, [">= 3.0.pre"])
243
+ s.add_dependency(%q<activesupport>, [">= 3.0.0.beta"])
244
244
  end
245
245
  else
246
- s.add_dependency(%q<activesupport>, [">= 3.0.pre"])
246
+ s.add_dependency(%q<activesupport>, [">= 3.0.0.beta"])
247
247
  end
248
248
  end
@@ -7,5 +7,5 @@ module Arel
7
7
  require 'arel/engines'
8
8
  autoload :Session, 'arel/session'
9
9
 
10
- VERSION = "0.2.0"
10
+ VERSION = "0.2.1"
11
11
  end
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.0
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-01-31 00:00:00 -05:00
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.pre
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