pah 0.0.10 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/CHANGELOG.md +35 -2
  4. data/README.md +2 -9
  5. data/lib/pah/files/Gemfile +39 -46
  6. data/lib/pah/files/README.md +47 -0
  7. data/lib/pah/files/app/assets/javascripts/application.js +33 -0
  8. data/lib/pah/files/app/assets/stylesheets/_variables.scss +42 -0
  9. data/lib/pah/files/app/assets/stylesheets/application.scss +6 -0
  10. data/lib/pah/files/app/assets/stylesheets/form.scss +259 -0
  11. data/lib/pah/files/app/assets/stylesheets/general.scss +22 -0
  12. data/lib/pah/files/app/assets/stylesheets/reset.scss +64 -0
  13. data/lib/pah/files/app/assets/stylesheets/responsive.scss +108 -0
  14. data/lib/pah/files/app/views/application/_error_messages.html.haml +3 -3
  15. data/lib/pah/files/app/views/layouts/application.html.haml +3 -3
  16. data/lib/pah/files/config/initializers/jumpup_heroku.rb +3 -0
  17. data/lib/pah/files/lib/tasks/jumpup.rake +13 -0
  18. data/lib/pah/files/spec/support/vcr.rb +3 -2
  19. data/lib/pah/partials/_assets.rb +13 -0
  20. data/lib/pah/partials/_cleanup.rb +2 -3
  21. data/lib/pah/partials/_config.rb +36 -0
  22. data/lib/pah/partials/_git.rb +3 -1
  23. data/lib/pah/partials/_heroku.rb +15 -37
  24. data/lib/pah/partials/_jumpup.rb +12 -0
  25. data/lib/pah/partials/_layout.rb +9 -0
  26. data/lib/pah/partials/_locale.rb +5 -0
  27. data/lib/pah/partials/_readme.rb +9 -0
  28. data/lib/pah/partials/_rspec.rb +1 -1
  29. data/lib/pah/partials/_ruby_env.rb +5 -1
  30. data/lib/pah/partials/_unicorn.rb +3 -0
  31. data/lib/pah/template.rb +8 -6
  32. data/lib/pah/version.rb +1 -1
  33. data/pah.gemspec +2 -2
  34. metadata +30 -21
  35. data/lib/pah/files/app/assets/stylesheets/application.css.scss +0 -6
  36. data/lib/pah/files/app/assets/stylesheets/reset.css +0 -40
  37. data/lib/pah/files/lib/tasks/integration.rake +0 -109
  38. data/lib/pah/partials/_default.rb +0 -15
  39. data/lib/pah/partials/_integration.rb +0 -9
  40. data/lib/pah/partials/_stylesheets.rb +0 -9
@@ -1,15 +0,0 @@
1
- puts "Adding default files ...".magenta
2
-
3
- copy_static_file 'app/assets/stylesheets/reset.css'
4
- copy_static_file 'app/views/layouts/application.html.haml'
5
- copy_static_file 'app/views/application/_error_messages.html.haml'
6
- copy_static_file 'app/views/application/_flash_messages.html.haml'
7
- copy_static_file 'config/unicorn.rb'
8
- copy_static_file 'Procfile'
9
- copy_static_file 'config/locales/pt-BR.yml'
10
- copy_static_file '.gitignore'
11
- copy_static_file '.env'
12
-
13
- git :add => '.'
14
- git :commit => "-aqm 'Add default stuff.'"
15
- puts "\n"
@@ -1,9 +0,0 @@
1
- puts "Setting up Integration... ".magenta
2
-
3
- copy_static_file 'lib/tasks/integration.rake'
4
- gsub_file 'lib/tasks/integration.rake', /PROJECT/, @app_name
5
-
6
- git :add => 'lib/tasks/integration.rake'
7
- git :commit => "-qm 'Adding integration tasks.'"
8
-
9
- puts "\n"
@@ -1,9 +0,0 @@
1
- puts "Adding stylesheets files ...".magenta
2
-
3
- copy_static_file 'app/assets/stylesheets/application.css.scss'
4
- remove_file 'app/assets/stylesheets/application.css'
5
- copy_static_file 'app/assets/stylesheets/reset.css'
6
-
7
- git :add => '.'
8
- git :commit => "-aqm 'Add stylesheets files.'"
9
- puts "\n"