summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2015-06-07 09:31:06 -0600
committermo khan <mo@mokhan.ca>2015-06-07 09:31:06 -0600
commit01c7e7205186e7aa3bb2fb42cceb6b2efe88a7dc (patch)
tree74e9fb207b7e95f5d40191ac919b3f55c7b2694e /lib/tasks
parent63e177514c3591d9c356f94ad8bf0f22f92f5cf8 (diff)
include app/assets in package.
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/package.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/package.rake b/lib/tasks/package.rake
index c93c0fd..178c0fd 100644
--- a/lib/tasks/package.rake
+++ b/lib/tasks/package.rake
@@ -7,7 +7,7 @@ namespace :package do
Rake::PackageTask.new("stronglifters", version) do |package|
package.need_tar_gz = true
package.package_files.add %w(
- app/**/**/*
+ app/**/*
config/**/*
db/**/*
lib/**/*
@@ -21,7 +21,7 @@ namespace :package do
config.ru
)
package.package_files.exclude do |path|
- path.start_with?("app/assets/") || path.start_with?("config/deploy")
+ path.start_with?("config/deploy")
end
end
Rake::Task["repackage"].invoke