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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +35 -2
- data/README.md +2 -9
- data/lib/pah/files/Gemfile +39 -46
- data/lib/pah/files/README.md +47 -0
- data/lib/pah/files/app/assets/javascripts/application.js +33 -0
- data/lib/pah/files/app/assets/stylesheets/_variables.scss +42 -0
- data/lib/pah/files/app/assets/stylesheets/application.scss +6 -0
- data/lib/pah/files/app/assets/stylesheets/form.scss +259 -0
- data/lib/pah/files/app/assets/stylesheets/general.scss +22 -0
- data/lib/pah/files/app/assets/stylesheets/reset.scss +64 -0
- data/lib/pah/files/app/assets/stylesheets/responsive.scss +108 -0
- data/lib/pah/files/app/views/application/_error_messages.html.haml +3 -3
- data/lib/pah/files/app/views/layouts/application.html.haml +3 -3
- data/lib/pah/files/config/initializers/jumpup_heroku.rb +3 -0
- data/lib/pah/files/lib/tasks/jumpup.rake +13 -0
- data/lib/pah/files/spec/support/vcr.rb +3 -2
- data/lib/pah/partials/_assets.rb +13 -0
- data/lib/pah/partials/_cleanup.rb +2 -3
- data/lib/pah/partials/_config.rb +36 -0
- data/lib/pah/partials/_git.rb +3 -1
- data/lib/pah/partials/_heroku.rb +15 -37
- data/lib/pah/partials/_jumpup.rb +12 -0
- data/lib/pah/partials/_layout.rb +9 -0
- data/lib/pah/partials/_locale.rb +5 -0
- data/lib/pah/partials/_readme.rb +9 -0
- data/lib/pah/partials/_rspec.rb +1 -1
- data/lib/pah/partials/_ruby_env.rb +5 -1
- data/lib/pah/partials/_unicorn.rb +3 -0
- data/lib/pah/template.rb +8 -6
- data/lib/pah/version.rb +1 -1
- data/pah.gemspec +2 -2
- metadata +30 -21
- data/lib/pah/files/app/assets/stylesheets/application.css.scss +0 -6
- data/lib/pah/files/app/assets/stylesheets/reset.css +0 -40
- data/lib/pah/files/lib/tasks/integration.rake +0 -109
- data/lib/pah/partials/_default.rb +0 -15
- data/lib/pah/partials/_integration.rb +0 -9
- 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"
|