Skip to content

Commit bb4c246

Browse files
committed
Add Markdown file extension to README
1 parent 19736a2 commit bb4c246

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README renamed to README.md

File renamed without changes.

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ end
1313

1414
desc 'Generate YARD Documentation'
1515
task :doc do
16-
sh "mv README TEMPME"
16+
sh "mv README.md TEMPREADME"
1717
sh "rm -rf doc"
1818
sh "yardoc"
19-
sh "mv TEMPME README"
19+
sh "mv TEMPREADME README.md"
2020
end
2121

2222
namespace :gem do

jammit.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ Gem::Specification.new do |s|
2020
s.require_paths = ['lib']
2121
s.executables = ['jammit']
2222

23-
s.extra_rdoc_files = ['README']
23+
s.extra_rdoc_files = ['README.md']
2424
s.rdoc_options << '--title' << 'Jammit' <<
2525
'--exclude' << 'test' <<
26-
'--main' << 'README' <<
26+
'--main' << 'README.md' <<
2727
'--all'
2828

2929
s.add_dependency 'cssmin', ['>= 1.0.3']
3030
s.add_dependency 'jsmin', ['>= 1.0.1']
3131

32-
s.files = Dir['lib/**/*', 'bin/*', 'rails/*', 'jammit.gemspec', 'LICENSE', 'README']
32+
s.files = Dir['lib/**/*', 'bin/*', 'rails/*', 'jammit.gemspec', 'LICENSE', 'README.md']
3333
end

0 commit comments

Comments
 (0)