Skip to content

Commit 7fe30e6

Browse files
committed
Use README.md in the activerecord-session_store.gemspec
Because `bundle install` shows following messages and bundler does not install the activerecord-session_store gem. activerecord-session_store at <gem location> did not have a valid gemspec. This prevents bundler from installing bins or native extensions, but that may not affect its functionality. The validation message from Rubygems was: ["README.rdoc"] are not files
1 parent 4ecd3f7 commit 7fe30e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

activerecord-session_store.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Gem::Specification.new do |s|
1111
s.email = '[email protected]'
1212
s.homepage = 'http://www.rubyonrails.org'
1313

14-
s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.rdoc', 'lib/**/*']
14+
s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.md', 'lib/**/*']
1515
s.require_path = 'lib'
1616

17-
s.extra_rdoc_files = %w( README.rdoc )
18-
s.rdoc_options.concat ['--main', 'README.rdoc']
17+
s.extra_rdoc_files = %w( README.md )
18+
s.rdoc_options.concat ['--main', 'README.md']
1919

2020
s.add_dependency('activerecord', '~> 4.0.0.beta')
2121
s.add_dependency('actionpack', '~> 4.0.0.beta')

0 commit comments

Comments
 (0)