Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5d92b6e

Browse files
author
Drew Blas
committedFeb 1, 2011
Changed readme to readme.rdoc for github to render
1 parent 73b5d29 commit 5d92b6e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed
 

‎CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.3.1:
2+
* Downgraded mail gem version required to enhance Rails 3.0.0 compatibility
3+
14
0.3.0:
25
* Added send_raw_email support
36
* Added support for Rails3

‎README renamed to ‎README.rdoc

File renamed without changes.

‎Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace :doc do
5656
version = File.exist?('VERSION') ? File.read('VERSION') : ""
5757
rdoc.title = "AWS::SES -- Support for Amazon SES's REST api #{version}"
5858
rdoc.options << '--line-numbers' << '--inline-source'
59-
rdoc.rdoc_files.include('README')
59+
rdoc.rdoc_files.include('README.rdoc')
6060
rdoc.rdoc_files.include('LICENSE')
6161
rdoc.rdoc_files.include('CHANGELOG')
6262
rdoc.rdoc_files.include('TODO')
@@ -81,7 +81,7 @@ namespace :doc do
8181
strip_comments[info.comment]
8282
end
8383

84-
open('README', 'w') do |file|
84+
open('README.rdoc', 'w') do |file|
8585
file.write ERB.new(IO.read('README.erb')).result(binding)
8686
end
8787
end

‎aws-ses.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Gem::Specification.new do |s|
1414
s.email = %q{drew.blas@gmail.com}
1515
s.extra_rdoc_files = [
1616
"LICENSE",
17-
"README",
18-
"README.erb",
17+
"README.rdoc",
18+
"CHANGELOG"
1919
"TODO"
2020
]
2121
s.files = [
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
2424
"Gemfile",
2525
"Gemfile.lock",
2626
"LICENSE",
27-
"README",
27+
"README.rdoc",
2828
"README.erb",
2929
"Rakefile",
3030
"TODO",

0 commit comments

Comments
 (0)
Please sign in to comment.