Commit 2ef3626df0b3951a22250be61dd8d2450935d25c
1 parent
fdaecd88
Exists in
master
and in
22 other branches
ActionItem154: including everything needed in the package
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1411 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
lib/tasks/package.rake
| ... | ... | @@ -5,7 +5,7 @@ Rake::PackageTask.new(Noosfero::PROJECT, Noosfero::VERSION) do |p| |
| 5 | 5 | p.need_tar_gz = true |
| 6 | 6 | |
| 7 | 7 | # application files |
| 8 | - p.package_files.include('app/**/*.{rb,rhtml}') | |
| 8 | + p.package_files.include('app/**/*.{rb,rhtml,rjs,rxml}') | |
| 9 | 9 | p.package_files.include('config/**/*.{rb,sqlite3}') |
| 10 | 10 | p.package_files.include('config/ferret_server.yml') |
| 11 | 11 | p.package_files.include('db/migrate/*.rb') |
| ... | ... | @@ -31,8 +31,8 @@ Rake::PackageTask.new(Noosfero::PROJECT, Noosfero::VERSION) do |p| |
| 31 | 31 | p.package_files.include('tmp/sockets') |
| 32 | 32 | |
| 33 | 33 | # symbolic links |
| 34 | - p.package_files.include('app/views/profile_design/*.rhtml') | |
| 35 | - p.package_files.include('app/views/environment_design/*.rhtml') | |
| 34 | + p.package_files.include('app/views/profile_design/*') | |
| 35 | + p.package_files.include('app/views/environment_design/*') | |
| 36 | 36 | |
| 37 | 37 | # external resources |
| 38 | 38 | p.package_files.include('vendor/**/*') | ... | ... |