aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-11-10 15:04:54 -0500
committerBryan Helmkamp <bryan@brynary.com>2009-11-10 15:04:54 -0500
commit3dbdaa399f1a15b5f6e770057342164a6deb9040 (patch)
tree02178e4fdeba9a2b60d467ea4ac958c58bdec94a
parent627bce9740531ca107d16ac62273b4acdfab7fbf (diff)
downloadrails-3dbdaa399f1a15b5f6e770057342164a6deb9040.tar.gz
rails-3dbdaa399f1a15b5f6e770057342164a6deb9040.tar.bz2
rails-3dbdaa399f1a15b5f6e770057342164a6deb9040.zip
Add History.txt to RDoc
-rw-r--r--Thorfile2
-rw-r--r--arel.gemspec8
2 files changed, 6 insertions, 4 deletions
diff --git a/Thorfile b/Thorfile
index 0ef929847f..a3cce29541 100644
--- a/Thorfile
+++ b/Thorfile
@@ -30,7 +30,7 @@ and query generation.
s.test_files = normalize_files(Dir['spec/**/*.rb'] - repo.lib.ignored_files)
s.has_rdoc = true
- s.extra_rdoc_files = %w[README.markdown]
+ s.extra_rdoc_files = %w[History.txt README.markdown]
# Arel required ActiveRecord, but we're not declaring it to avoid a
# circular dependency chain. The solution is for ActiveRecord to release
diff --git a/arel.gemspec b/arel.gemspec
index 8fedc9a25f..44128adc63 100644
--- a/arel.gemspec
+++ b/arel.gemspec
@@ -2,11 +2,11 @@
Gem::Specification.new do |s|
s.name = %q{arel}
- s.version = "0.1.3"
+ s.version = "0.2.pre"
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
+ s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Bryan Helmkamp", "Nick Kallen"]
- s.date = %q{2009-10-27}
+ s.date = %q{2009-11-10}
s.description = %q{Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex
of SQL queries and it 2) adapts to various RDBMS systems. It is intended to be
a framework framework; that is, you can build your own ORM with it, focusing on
@@ -14,11 +14,13 @@ innovative object and collection modeling as opposed to database compatibility
and query generation.}
s.email = %q{bryan@brynary.com}
s.extra_rdoc_files = [
+ "History.txt",
"README.markdown"
]
s.files = [
".gitignore",
".gitmodules",
+ "History.txt",
"README.markdown",
"Rakefile",
"Thorfile",