Skip to content

Commit

Permalink
Make gems less in size, do not include directories used by old merb-gen.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin authored and mattetti committed Dec 13, 2008
1 parent 96cc1c6 commit 82b6442
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion merb_activerecord/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec = Gem::Specification.new do |s|
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion merb_builder/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec = Gem::Specification.new do |s|
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('builder', '>= 2.0.0')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion merb_jquery/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec = Gem::Specification.new do |s|
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion merb_laszlo/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec = Gem::Specification.new do |s|
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile) + Dir.glob("{lib,specs}/**/*")
s.files = %w(LICENSE README Rakefile) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion merb_parts/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec = Gem::Specification.new do |s|
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec,merb_generators}/**/*")
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion merb_screw_unit/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec = Gem::Specification.new do |s|
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-slices', '>= 0.9.9')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec,app,public,stubs}/**/*")
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,app,public,stubs}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion merb_sequel/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec = Gem::Specification.new do |s|
s.homepage = PROJECT_URL
s.add_dependency("merb-core", ">= 0.9.9")
s.add_dependency("sequel", ">= 1.4.0")
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,sequel_generators}/**/*")
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion merb_stories/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec = Gem::Specification.new do |s|
s.homepage = PROJECT_URL
s.add_dependency('rspec', '>= 1.1.3')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile Generators TODO) + Dir.glob("{lib,specs}/**/*")
s.files = %w(LICENSE README Rakefile Generators TODO) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
Expand Down

0 comments on commit 82b6442

Please sign in to comment.