Skip to content

Commit

Permalink
Include generators in gem manifest, closes carrierwaveuploader#97
Browse files Browse the repository at this point in the history
  • Loading branch information
jnicklas committed Aug 24, 2010
1 parent 503ebe2 commit cb49ee4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions carrierwave.gemspec
Expand Up @@ -2,15 +2,15 @@

Gem::Specification.new do |s|
s.name = "carrierwave"
s.version = "0.4.9"
s.version = "0.4.10"

s.authors = ["Jonas Nicklas"]
s.date = Date.today
s.description = "Upload files in your Ruby applications, map them to a range of ORMs, store them on different backends."
s.summary = "Ruby file upload library"
s.email = ["jonas.nicklas@gmail.com"]
s.extra_rdoc_files = ["README.rdoc"]
s.files = Dir.glob("{bin,lib}/**/*") + %w(README.rdoc)
s.files = Dir.glob("{bin,lib,rails_generators,merb_generators}/**/*") + %w(README.rdoc Generators)
s.homepage = %q{http://carrierwave.rubyforge.org}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
Expand Down
2 changes: 1 addition & 1 deletion lib/carrierwave.rb
Expand Up @@ -7,7 +7,7 @@

module CarrierWave

VERSION = "0.4.9"
VERSION = "0.4.10"

class << self
attr_accessor :root
Expand Down

0 comments on commit cb49ee4

Please sign in to comment.