Skip to content

Commit

Permalink
Omit changelog and examples from the installed .gem
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed Mar 3, 2013
1 parent 7cae62b commit be7e552
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions activeresource.gemspec
Expand Up @@ -7,19 +7,20 @@ Gem::Specification.new do |s|
s.version = ActiveResource::VERSION::STRING
s.summary = 'REST modeling framework (part of Rails).'
s.description = 'REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models.'
s.license = 'MIT'

s.required_ruby_version = '>= 1.9.3'

s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'
s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'

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

s.extra_rdoc_files = %w( README.rdoc )
s.rdoc_options.concat ['--main', 'README.rdoc']

s.required_ruby_version = '>= 1.9.3'

s.add_dependency('activesupport', '>= 4.0.0.beta1')
s.add_dependency('activemodel', '>= 4.0.0.beta1')
s.add_dependency('rails-observers', '~> 0.1.1')
Expand Down

0 comments on commit be7e552

Please sign in to comment.