pah 0.0.15 → 0.0.16

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 (106) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +1 -1
  4. data/CHANGELOG.md +19 -1
  5. data/README.md +9 -9
  6. data/Rakefile +1 -1
  7. data/bin/pah +1 -2
  8. data/features/bourbon.feature +1 -1
  9. data/features/env.feature +1 -1
  10. data/features/gemfile.feature +1 -1
  11. data/features/inflections.feature +14 -0
  12. data/features/jumpup.feature +12 -2
  13. data/features/layout.feature +4 -0
  14. data/features/locale.feature +1 -1
  15. data/features/public.feature +9 -0
  16. data/features/readme.feature +1 -1
  17. data/features/rspec.feature +12 -1
  18. data/features/runner.feature +1 -1
  19. data/features/step_definitions/create_simple_app.rb +4 -4
  20. data/features/step_definitions/file_content.rb +1 -1
  21. data/features/support/bin/heroku +1 -1
  22. data/features/support/env.rb +1 -1
  23. data/features/support/file_helpers.rb +0 -1
  24. data/lib/pah.rb +12 -0
  25. data/lib/pah/configuration.rb +18 -0
  26. data/lib/pah/files/Gemfile +22 -22
  27. data/lib/pah/files/README.md +3 -9
  28. data/lib/pah/files/app/views/layouts/application.html.slim +1 -0
  29. data/lib/pah/files/config/initializers/bullet.rb +1 -1
  30. data/lib/pah/files/config/initializers/jumpup_heroku.rb +1 -1
  31. data/lib/pah/files/config/puma.rb +2 -2
  32. data/lib/pah/files/lib/tasks/jumpup.rake +1 -2
  33. data/lib/pah/files/public/humans.txt +5 -0
  34. data/lib/pah/files/spec/acceptance/dummy_spec.rb +3 -4
  35. data/lib/pah/files/spec/rails_helper.rb +5 -4
  36. data/lib/pah/files/spec/support/acceptance_helpers.rb +6 -4
  37. data/lib/pah/files/spec/support/acceptance_macros.rb +0 -1
  38. data/lib/pah/files/spec/support/http_basic_auth.rb +2 -2
  39. data/lib/pah/files/spec/support/matchers.rb +1 -1
  40. data/lib/pah/files/spec/support/random_timezone.rb +6 -0
  41. data/lib/pah/files/spec/support/shared_connection.rb +10 -8
  42. data/lib/pah/files/spec/support/uploaded_file.rb +9 -10
  43. data/lib/pah/files/spec/support/vcr.rb +8 -0
  44. data/lib/pah/rails_template.rb +45 -0
  45. data/lib/pah/runner.rb +20 -0
  46. data/lib/pah/template.rb +30 -37
  47. data/lib/pah/templates/bin.rb +12 -0
  48. data/lib/pah/templates/bourbon.rb +32 -0
  49. data/lib/pah/templates/bullet.rb +14 -0
  50. data/lib/pah/templates/canonical_host.rb +19 -0
  51. data/lib/pah/templates/capybara.rb +16 -0
  52. data/lib/pah/templates/cleanup.rb +12 -0
  53. data/lib/pah/templates/config.rb +42 -0
  54. data/lib/pah/templates/database.rb +17 -0
  55. data/lib/pah/templates/gems.rb +31 -0
  56. data/lib/pah/{partials/_generators.rb → templates/generators.rb} +12 -4
  57. data/lib/pah/templates/git.rb +13 -0
  58. data/lib/pah/{partials/_heroku.rb → templates/heroku.rb} +34 -26
  59. data/lib/pah/templates/inflection.rb +19 -0
  60. data/lib/pah/templates/jumpup.rb +16 -0
  61. data/lib/pah/templates/layout.rb +15 -0
  62. data/lib/pah/templates/letter_opener.rb +19 -0
  63. data/lib/pah/templates/locale.rb +32 -0
  64. data/lib/pah/templates/newrelic.rb +14 -0
  65. data/lib/pah/templates/public.rb +27 -0
  66. data/lib/pah/templates/puma.rb +14 -0
  67. data/lib/pah/templates/rack_deflater.rb +16 -0
  68. data/lib/pah/templates/rack_timeout.rb +12 -0
  69. data/lib/pah/templates/readme.rb +14 -0
  70. data/lib/pah/templates/rollbar.rb +23 -0
  71. data/lib/pah/templates/rspec.rb +26 -0
  72. data/lib/pah/templates/ruby_env.rb +24 -0
  73. data/lib/pah/templates/secret_token.rb +15 -0
  74. data/lib/pah/templates/secure_headers.rb +29 -0
  75. data/lib/pah/{partials/_sendgrid.rb → templates/sendgrid.rb} +12 -4
  76. data/lib/pah/templates/simple_form.rb +17 -0
  77. data/lib/pah/version.rb +3 -2
  78. data/pah.gemspec +14 -15
  79. metadata +43 -35
  80. data/lib/pah/pah.rb +0 -64
  81. data/lib/pah/partials/_bin.rb +0 -4
  82. data/lib/pah/partials/_bourbon.rb +0 -25
  83. data/lib/pah/partials/_bullet.rb +0 -6
  84. data/lib/pah/partials/_canonical_host.rb +0 -11
  85. data/lib/pah/partials/_capybara.rb +0 -8
  86. data/lib/pah/partials/_cleanup.rb +0 -4
  87. data/lib/pah/partials/_config.rb +0 -36
  88. data/lib/pah/partials/_database.rb +0 -9
  89. data/lib/pah/partials/_gems.rb +0 -22
  90. data/lib/pah/partials/_git.rb +0 -5
  91. data/lib/pah/partials/_jumpup.rb +0 -8
  92. data/lib/pah/partials/_layout.rb +0 -7
  93. data/lib/pah/partials/_letter_opener.rb +0 -11
  94. data/lib/pah/partials/_locale.rb +0 -24
  95. data/lib/pah/partials/_newrelic.rb +0 -6
  96. data/lib/pah/partials/_public.rb +0 -16
  97. data/lib/pah/partials/_puma.rb +0 -6
  98. data/lib/pah/partials/_rack_deflater.rb +0 -8
  99. data/lib/pah/partials/_rack_timeout.rb +0 -4
  100. data/lib/pah/partials/_readme.rb +0 -6
  101. data/lib/pah/partials/_rollbar.rb +0 -15
  102. data/lib/pah/partials/_rspec.rb +0 -17
  103. data/lib/pah/partials/_ruby_env.rb +0 -16
  104. data/lib/pah/partials/_secret_token.rb +0 -7
  105. data/lib/pah/partials/_secure_headers.rb +0 -21
  106. data/lib/pah/partials/_simple_form.rb +0 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aefde0840d5b8588677fc13ae97cff010276c0c5
4
- data.tar.gz: 6b830904ceb2a0c7c85443095b4fa3ed9b4f9102
3
+ metadata.gz: 395ec87aa2b2c99b1939e94eaa1f2f482e510d16
4
+ data.tar.gz: 0f9a0ecbe68d1e03d5ab33e0c2e94f958d29f54e
5
5
  SHA512:
6
- metadata.gz: 368b681a9691477b6d308afcbe236a61e3f821bc197d719ecf10134e0c06f928ed95368a226e959c7403d395aff03e240dc206a1e1cd11cdadd163430b51870c
7
- data.tar.gz: 91627b7e415e0217507fdf77db0cb8ecc9061e7a48b3f551c87864d5f164eb845646e75e45aecc88596d3991ee9a49c99efcecd3b1df3536ea7fe33048581fae
6
+ metadata.gz: 479dff7da6979d18b04df087378a7cf6face24549cef636484cb2655971edaeae9c2fb72b20be1c641029f2cb5fedf7bcc255bc38cc4e301157562c025c54511
7
+ data.tar.gz: e3cec367c946673a9863a0899f181adabf436b07be947feaacdd06f1f29a77e85b8dee4b80cc10da190047f98fa12d427063b39b84ee07146304268adfa039d9
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.1.2
1
+ 2.1.3
data/.travis.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.2
3
+ - 2.1.3
4
4
  before_script:
5
5
  - git config --global user.email "johndoe@example.com"
6
6
  - git config --global user.name "John Doe"
data/CHANGELOG.md CHANGED
@@ -1,6 +1,24 @@
1
1
  # Changelog
2
2
 
3
- ## 0.0.15 (unreleased)
3
+ ## 0.0.16 (October 11, 2014)
4
+
5
+ ### features
6
+
7
+ ### improvements
8
+
9
+ - Add humans.txt
10
+ - Remove HE:labs logo from the default README
11
+ - Load the timezone from the TZ env & fallback to Brasilia (America/Sao_Paulo)
12
+ - Use a random timezone on every spec run
13
+ - Make VCR filter all Rails secrets by default
14
+ - Update gem versions
15
+ - Replace Loggly with Logentries
16
+ - Set Ruby 2.1.3 as default
17
+ - Add API acronym to inflections.rb
18
+ - Add `ActiveSupport::Testing::TimeHelpers` module to RSpec's `rails_helper.rb` configuration
19
+ - Update order of jumpup rake tasks
20
+
21
+ ## 0.0.15 (July 4, 2014)
4
22
 
5
23
  ### features
6
24
 
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![RubyGems][gem_version_badge]][ruby_gems]
4
4
  [![Code Climate][code_climate_badge]][code_climate]
5
5
  [![Gemnasium][gemnasium_badge]][gemnasium]
6
+ [![RubyGems][gem_downloads_badge]][ruby_gems]
6
7
 
7
8
  A Rails application template which was born from [Startup DEV][startupdev] and now is used to start most projects at [HE:labs][helabs].
8
9
 
@@ -29,16 +30,16 @@ Run:
29
30
  $ pah projectname
30
31
  ```
31
32
 
32
- This will create a Rails 4.1.1 with Ruby 2.1.2. This script creates a new git repository in the folder `projectname`.
33
+ This will create a Rails 4.1.4 app with Ruby 2.1.3. This script creates a new git repository in the folder `projectname`.
33
34
 
34
- :warning: PAH not meant to be used against an existing repo.
35
+ :warning: PAH is not meant to be used against an existing repo.
35
36
 
36
37
  ### RVM
37
38
 
38
39
  If you're using RVM, create and use a gemset (with the project name) before running PAH:
39
40
 
40
41
  ```bash
41
- $ rvm use 2.1.2@projectname --create
42
+ $ rvm use 2.1.3@projectname --create
42
43
  $ pah projectname
43
44
  ```
44
45
 
@@ -64,8 +65,6 @@ Please see [CONTRIBUTING.md](https://github.com/Helabs/pah/blob/master/CONTRIBUT
64
65
  ## Roadmap
65
66
 
66
67
  - Improve the specs and test coverage
67
- - Refactor the templates/partials logic
68
- - Extract "utils" to somewhere else outside the template.rb
69
68
  - Make sure all the generated files are not beign overriden with older versions (like spec_helper, applications config & etc), don't copy files.. build them
70
69
  - Remove the old and unused spec/support files
71
70
  - Release version 1.0
@@ -89,11 +88,12 @@ This gem was created and is maintained by [HE:labs](https://github.com/Helabs).
89
88
 
90
89
  [startupdev]: http://startupdev.com.br
91
90
  [helabs]: http://helabs.com.br
92
- [gem_version_badge]: https://badge.fury.io/rb/pah.png
91
+ [gem_version_badge]: http://img.shields.io/gem/v/pah.svg?style=flat
92
+ [gem_downloads_badge]: http://img.shields.io/gem/dt/pah.svg?style=flat
93
93
  [ruby_gems]: http://rubygems.org/gems/pah
94
94
  [code_climate]: https://codeclimate.com/github/Helabs/pah
95
- [code_climate_badge]: https://codeclimate.com/github/Helabs/pah.png
95
+ [code_climate_badge]: http://img.shields.io/codeclimate/github/Helabs/pah.svg?style=flat
96
96
  [gemnasium]: https://gemnasium.com/Helabs/pah
97
- [gemnasium_badge]: https://gemnasium.com/Helabs/pah.png
97
+ [gemnasium_badge]: http://img.shields.io/gemnasium/Helabs/pah.svg?style=flat
98
98
  [travis]: https://travis-ci.org/Helabs/pah
99
- [travis_badge]: https://travis-ci.org/Helabs/pah.svg?branch=master
99
+ [travis_badge]: http://img.shields.io/travis/Helabs/pah.svg?style=flat
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- require "bundler/gem_tasks"
1
+ require 'bundler/gem_tasks'
2
2
  require 'cucumber/rake/task'
3
3
 
4
4
  Cucumber::Rake::Task.new
data/bin/pah CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- require File.expand_path(File.join('..', 'lib', 'pah', 'version.rb'), File.dirname(__FILE__))
3
2
 
4
- template_rb = File.expand_path(File.join('..', 'lib', 'pah', 'template.rb'), File.dirname(__FILE__))
3
+ template_rb = File.expand_path(File.join('..', 'lib', 'pah', 'rails_template.rb'), File.dirname(__FILE__))
5
4
  exec "rails _#{::Pah::RAILS_VERSION}_ new #{ARGV[0]} -T -m #{template_rb}"
@@ -16,7 +16,7 @@ Feature: Bourbon
16
16
  """
17
17
  Then I have the file app/assets/stylesheets/base/_base.scss and contents of this file should match:
18
18
  """
19
- ^@import 'grid-settings';
19
+ @import "grid-settings";
20
20
  """
21
21
  Then I dont have a app/assets/stylesheets/application.css
22
22
 
data/features/env.feature CHANGED
@@ -6,7 +6,7 @@ Feature: Env files
6
6
  Scenario: Create env files
7
7
  Then I have the file .ruby-version and contents of this file should be:
8
8
  """
9
- 2.1.2
9
+ 2.1.3
10
10
 
11
11
  """
12
12
  Then I have the file .ruby-gemset and contents of this file should be:
@@ -6,6 +6,6 @@ Feature: Gemfile
6
6
  Scenario: Correct gems on gemfile
7
7
  Then I have the file Gemfile and contents of this file should include:
8
8
  """
9
- gem 'rails', '4.1.4'
9
+ gem 'rails', '4.1.6'
10
10
  """
11
11
 
@@ -0,0 +1,14 @@
1
+ @no-clobber
2
+ Feature: Inflections
3
+ Background:
4
+ Given I have created the app "myapp" with pah
5
+
6
+ Scenario: Add API as acronym
7
+ Then I have the file config/initializers/inflections.rb and contents of this file should include:
8
+ """
9
+ ActiveSupport::Inflector.inflections do |inflect|
10
+ """
11
+ Then I have the file config/initializers/inflections.rb and contents of this file should include:
12
+ """
13
+ inflect.acronym 'API'
14
+ """
@@ -10,5 +10,15 @@ Feature: Jumpup
10
10
  """
11
11
  config.app = 'myapp'
12
12
  """
13
-
14
-
13
+ Then I have the file lib/tasks/jumpup.rake and contents of this file should include:
14
+ """
15
+ INTEGRATION_TASKS = %w(
16
+ jumpup:heroku:start
17
+ jumpup:start
18
+ jumpup:bundle_install
19
+ db:migrate
20
+ spec
21
+ jumpup:heroku:finish
22
+ jumpup:finish
23
+ )
24
+ """
@@ -10,3 +10,7 @@ Feature: Layout
10
10
  """
11
11
  = page_title(app_name: 'example')
12
12
  """
13
+ Then I have the file app/views/layouts/application.html.slim and contents of this file should include:
14
+ """
15
+ link rel="author" href="/humans.txt"
16
+ """
@@ -8,7 +8,7 @@ Feature: Locale
8
8
  Then I have a config/locales/app.pt-BR.yml
9
9
  Then I have the file config/application.rb and contents of this file should include:
10
10
  """
11
- config.time_zone = 'Brasilia'
11
+ config.time_zone = ENV.fetch('TZ', 'Brasilia')
12
12
  """
13
13
  Then I have the file config/application.rb and contents of this file should include:
14
14
  """
@@ -5,12 +5,21 @@ Feature: Public
5
5
 
6
6
  Scenario: Have correct files
7
7
  Then I have a public/robots.txt
8
+ Then I have a public/humans.txt
8
9
  Then I have a public/404.html
9
10
  Then I have a public/500.html
10
11
  Then I have the file public/robots.txt and contents of this file should include:
11
12
  """
12
13
  Disallow: /admin/
13
14
  """
15
+ Then I have the file public/humans.txt and contents of this file should include:
16
+ """
17
+ /* TEAM */
18
+ Developer: HE:labs team
19
+ Contact: tech [at] helabs.com.br
20
+ Twitter: @helabs
21
+ From: Rio de Janeiro, Brazil
22
+ """
14
23
  Then I have the file public/404.html and contents of this file should include:
15
24
  """
16
25
  Hmmm... Não achamos a página que você está procurando.
@@ -11,5 +11,5 @@ Feature: README
11
11
  """
12
12
  Then I have the file README.md and contents of this file should include:
13
13
  """
14
- Ruby 2.1.2
14
+ Ruby 2.1.3
15
15
  """
@@ -12,4 +12,15 @@ Feature: RSpec
12
12
  Then I have a spec/support/matchers.rb
13
13
  Then I have a spec/support/suppress_log.rb
14
14
  Then I have a spec/support/uploaded_file.rb
15
- Then I have a spec/support/vcr.rb
15
+ Then I have the file spec/support/vcr.rb and contents of this file should include:
16
+ """
17
+ c.filter_sensitive_data("<#{key.upcase}>") { value }
18
+ """
19
+ Then I have the file spec/support/random_timezone.rb and contents of this file should include:
20
+ """
21
+ Time.zone = ActiveSupport::TimeZone.all.sample
22
+ """
23
+ Then I have the file spec/rails_helper.rb and contents of this file should include:
24
+ """
25
+ config.include ActiveSupport::Testing::TimeHelpers
26
+ """
@@ -38,7 +38,7 @@ Feature: Run without errors
38
38
  """
39
39
  Then the stdout should contain:
40
40
  """
41
- running heroku addons:add loggly:mole --app myapponheroku
41
+ running heroku addons:add logentries --app myapponheroku
42
42
  """
43
43
  Then the stdout should contain:
44
44
  """
@@ -2,11 +2,11 @@ Given(/^I have created the app "(.*?)" with pah$/) do |app_name|
2
2
  app_exists = File.directory?("tmp/aruba/#{app_name}")
3
3
 
4
4
  if app_exists
5
- steps %Q{
5
+ steps %Q(
6
6
  Then a directory named "#{app_name}" should exist
7
- }
7
+ )
8
8
  else
9
- steps %Q{
9
+ steps %Q(
10
10
  When I run `rm -rf #{app_name}`
11
11
  Then I run `pah #{app_name}` interactively
12
12
  And I type "n"
@@ -15,6 +15,6 @@ Given(/^I have created the app "(.*?)" with pah$/) do |app_name|
15
15
  CONGRATS! INSTALLATION COMPLETE!
16
16
  """
17
17
  Then a directory named "#{app_name}" should exist
18
- }
18
+ )
19
19
  end
20
20
  end
@@ -15,5 +15,5 @@ end
15
15
 
16
16
  Then(/^I have the file(.* )and contents of this file should match:$/) do |file, content|
17
17
  file_content = read_from_app(file.strip)
18
- expect(file_content).to match(%r{#{content}})
18
+ expect(file_content).to match(Regexp.new(content))
19
19
  end
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- require "thor"
2
+ require 'thor'
3
3
 
4
4
  class Heroku < Thor
5
5
  desc 'auth:login', 'stub of heroku auth:login'
@@ -9,4 +9,4 @@ Before do
9
9
  end
10
10
 
11
11
  # Remove old generated projects
12
- system "rm -rf tmp/aruba"
12
+ system 'rm -rf tmp/aruba'
@@ -1,5 +1,4 @@
1
1
  module FileHelpers
2
-
3
2
  def read_from_app(file_path)
4
3
  File.read("tmp/aruba/myapp/#{file_path}")
5
4
  end
data/lib/pah.rb ADDED
@@ -0,0 +1,12 @@
1
+ require 'rails'
2
+ require 'colored'
3
+ require 'bundler'
4
+
5
+ module Pah
6
+ require 'pah/version'
7
+ require 'pah/configuration'
8
+ require 'pah/runner'
9
+ require 'pah/template'
10
+
11
+ TEMPLATE_ROOT = File.expand_path(File.join('pah'), File.dirname(__FILE__))
12
+ end
@@ -0,0 +1,18 @@
1
+ module Pah
2
+ class << self
3
+ attr_accessor :configuration
4
+ end
5
+
6
+ def self.configure
7
+ self.configuration ||= Configuration.new
8
+ yield(configuration)
9
+ end
10
+
11
+ class Configuration
12
+ attr_accessor :app_name, :heroku
13
+
14
+ def initialize
15
+ @heroku = {}
16
+ end
17
+ end
18
+ end
@@ -1,57 +1,57 @@
1
1
  source 'https://rubygems.org'
2
- ruby '2.1.2'
2
+ ruby 'RUBY_VERSION'
3
3
 
4
4
  gem 'rails', 'RAILS_VERSION'
5
- gem 'puma', '2.8.2'
6
- gem 'secure_headers', '1.2.0'
7
- gem 'jquery-rails', '3.1.1'
8
- gem 'turbolinks', '2.2.2'
9
- gem 'jbuilder', '2.1.1'
5
+ gem 'puma', '2.9.1'
6
+ gem 'secure_headers', '1.3.3'
7
+ gem 'jquery-rails', '3.1.2'
8
+ gem 'turbolinks', '2.3.0'
9
+ gem 'jbuilder', '2.1.3'
10
10
  gem 'slim-rails', '2.1.5'
11
11
  gem 'pg', '0.17.1'
12
- gem 'sass-rails', '4.0.3'
12
+ gem 'sass-rails', github: 'rails/sass-rails', ref: '57ec3397ff99655890895df29a7bf3f683410256'
13
13
  gem 'coffee-rails', '4.0.1'
14
- gem 'uglifier', '2.5.1'
14
+ gem 'uglifier', '2.5.3'
15
15
  gem 'simple_form', '3.1.0.rc1'
16
16
  gem 'flutie', '2.0.0'
17
- gem 'bourbon', '3.2.3'
18
- gem 'neat', '1.5.1'
19
- gem 'bitters', '0.10.0'
17
+ gem 'bourbon', '4.0.2'
18
+ gem 'neat', '1.6.0'
19
+ gem 'bitters', '0.10.1'
20
20
  gem 'refills', '0.0.2'
21
21
 
22
22
  group :production, :staging do
23
23
  gem 'rails_12factor', '0.0.2'
24
24
  gem 'rack-canonical-host', '0.1.0'
25
25
  gem 'rack-timeout', github: 'kch/rack-timeout', ref: '83ca9f5141c1fdcb626820b1601c406e3a3a560a'
26
- gem 'newrelic_rpm', '3.9.0.229'
27
- gem 'rollbar', '0.13.1'
26
+ gem 'newrelic_rpm', '3.9.4.245'
27
+ gem 'rollbar', '1.0.1'
28
28
  end
29
29
 
30
30
  group :development do
31
31
  gem 'spring', '1.1.3'
32
- gem 'foreman', '0.74.0'
33
- gem 'jumpup', '0.0.5'
32
+ gem 'foreman', '0.75.0'
33
+ gem 'jumpup', '0.0.7'
34
34
  gem 'jumpup-heroku', '0.0.5'
35
- gem 'better_errors', '1.1.0'
35
+ gem 'better_errors', '2.0.0'
36
36
  gem 'binding_of_caller', '0.7.2'
37
37
  gem 'letter_opener', '1.2.0'
38
- gem 'bullet', '4.11.3'
38
+ gem 'bullet', '4.13.2'
39
39
  gem 'quiet_assets', '1.0.3'
40
40
  end
41
41
 
42
42
  group :test do
43
- gem 'shoulda-matchers', '2.6.1', require: false
44
- gem 'simplecov', '0.8.2', require: false
43
+ gem 'shoulda-matchers', '2.7.0', require: false
44
+ gem 'simplecov', '0.9.1', require: false
45
45
  gem 'email_spec', '1.6.0'
46
- gem 'capybara', '2.4.1'
46
+ gem 'capybara', '2.4.3'
47
47
  gem 'poltergeist', '1.5.1'
48
- gem 'vcr', '2.9.2'
48
+ gem 'vcr', '2.9.3'
49
49
  gem 'webmock', '1.18.0'
50
50
  gem 'database_cleaner', '1.3.0'
51
51
  end
52
52
 
53
53
  group :development, :test do
54
- gem 'rspec-rails', '3.0.1'
54
+ gem 'rspec-rails', '3.1.0'
55
55
  gem 'factory_girl_rails', '4.4.1'
56
56
  gem 'pry-rails', '0.3.2'
57
57
  gem 'dotenv-rails', '0.11.1'
@@ -18,7 +18,7 @@ If you plan to **integrate** this project to Heroku, you'll need:
18
18
 
19
19
  ## Setup the project
20
20
 
21
- 1. Install the depedencies above
21
+ 1. Install the dependencies above
22
22
  2. `$ git clone <REPOSITORY_URL> PROJECT` - Clone the project
23
23
  3. `$ cd PROJECT` - Go into the project folder
24
24
  4. `$ bundle install` - Install the gem dependencies
@@ -67,12 +67,6 @@ First, check of your project has the correct configuration from [jumpup-heroku](
67
67
 
68
68
  :warning: All your daily work must be done on the `master` branch (or in a feature branch), never on `production` branch! The only thing you do on `production` is merging the changes from `master` and deploying to Heroku.
69
69
 
70
- ## Maintainers
70
+ ## Generated with PAH
71
71
 
72
- * [HE:labs](https://github.com/Helabs)
73
-
74
- ## Made with love by HE:labs
75
-
76
- ![HE:labs](http://helabs.com.br/images/logo.png)
77
-
78
- This app was created and is maintained by [HE:labs](https://github.com/Helabs).
72
+ Generated with [PAH](https://github.com/Helabs/pah), an open source project created and maintained by [HE:labs](http://helabs.com.br).