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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +1 -1
- data/CHANGELOG.md +19 -1
- data/README.md +9 -9
- data/Rakefile +1 -1
- data/bin/pah +1 -2
- data/features/bourbon.feature +1 -1
- data/features/env.feature +1 -1
- data/features/gemfile.feature +1 -1
- data/features/inflections.feature +14 -0
- data/features/jumpup.feature +12 -2
- data/features/layout.feature +4 -0
- data/features/locale.feature +1 -1
- data/features/public.feature +9 -0
- data/features/readme.feature +1 -1
- data/features/rspec.feature +12 -1
- data/features/runner.feature +1 -1
- data/features/step_definitions/create_simple_app.rb +4 -4
- data/features/step_definitions/file_content.rb +1 -1
- data/features/support/bin/heroku +1 -1
- data/features/support/env.rb +1 -1
- data/features/support/file_helpers.rb +0 -1
- data/lib/pah.rb +12 -0
- data/lib/pah/configuration.rb +18 -0
- data/lib/pah/files/Gemfile +22 -22
- data/lib/pah/files/README.md +3 -9
- data/lib/pah/files/app/views/layouts/application.html.slim +1 -0
- data/lib/pah/files/config/initializers/bullet.rb +1 -1
- data/lib/pah/files/config/initializers/jumpup_heroku.rb +1 -1
- data/lib/pah/files/config/puma.rb +2 -2
- data/lib/pah/files/lib/tasks/jumpup.rake +1 -2
- data/lib/pah/files/public/humans.txt +5 -0
- data/lib/pah/files/spec/acceptance/dummy_spec.rb +3 -4
- data/lib/pah/files/spec/rails_helper.rb +5 -4
- data/lib/pah/files/spec/support/acceptance_helpers.rb +6 -4
- data/lib/pah/files/spec/support/acceptance_macros.rb +0 -1
- data/lib/pah/files/spec/support/http_basic_auth.rb +2 -2
- data/lib/pah/files/spec/support/matchers.rb +1 -1
- data/lib/pah/files/spec/support/random_timezone.rb +6 -0
- data/lib/pah/files/spec/support/shared_connection.rb +10 -8
- data/lib/pah/files/spec/support/uploaded_file.rb +9 -10
- data/lib/pah/files/spec/support/vcr.rb +8 -0
- data/lib/pah/rails_template.rb +45 -0
- data/lib/pah/runner.rb +20 -0
- data/lib/pah/template.rb +30 -37
- data/lib/pah/templates/bin.rb +12 -0
- data/lib/pah/templates/bourbon.rb +32 -0
- data/lib/pah/templates/bullet.rb +14 -0
- data/lib/pah/templates/canonical_host.rb +19 -0
- data/lib/pah/templates/capybara.rb +16 -0
- data/lib/pah/templates/cleanup.rb +12 -0
- data/lib/pah/templates/config.rb +42 -0
- data/lib/pah/templates/database.rb +17 -0
- data/lib/pah/templates/gems.rb +31 -0
- data/lib/pah/{partials/_generators.rb → templates/generators.rb} +12 -4
- data/lib/pah/templates/git.rb +13 -0
- data/lib/pah/{partials/_heroku.rb → templates/heroku.rb} +34 -26
- data/lib/pah/templates/inflection.rb +19 -0
- data/lib/pah/templates/jumpup.rb +16 -0
- data/lib/pah/templates/layout.rb +15 -0
- data/lib/pah/templates/letter_opener.rb +19 -0
- data/lib/pah/templates/locale.rb +32 -0
- data/lib/pah/templates/newrelic.rb +14 -0
- data/lib/pah/templates/public.rb +27 -0
- data/lib/pah/templates/puma.rb +14 -0
- data/lib/pah/templates/rack_deflater.rb +16 -0
- data/lib/pah/templates/rack_timeout.rb +12 -0
- data/lib/pah/templates/readme.rb +14 -0
- data/lib/pah/templates/rollbar.rb +23 -0
- data/lib/pah/templates/rspec.rb +26 -0
- data/lib/pah/templates/ruby_env.rb +24 -0
- data/lib/pah/templates/secret_token.rb +15 -0
- data/lib/pah/templates/secure_headers.rb +29 -0
- data/lib/pah/{partials/_sendgrid.rb → templates/sendgrid.rb} +12 -4
- data/lib/pah/templates/simple_form.rb +17 -0
- data/lib/pah/version.rb +3 -2
- data/pah.gemspec +14 -15
- metadata +43 -35
- data/lib/pah/pah.rb +0 -64
- data/lib/pah/partials/_bin.rb +0 -4
- data/lib/pah/partials/_bourbon.rb +0 -25
- data/lib/pah/partials/_bullet.rb +0 -6
- data/lib/pah/partials/_canonical_host.rb +0 -11
- data/lib/pah/partials/_capybara.rb +0 -8
- data/lib/pah/partials/_cleanup.rb +0 -4
- data/lib/pah/partials/_config.rb +0 -36
- data/lib/pah/partials/_database.rb +0 -9
- data/lib/pah/partials/_gems.rb +0 -22
- data/lib/pah/partials/_git.rb +0 -5
- data/lib/pah/partials/_jumpup.rb +0 -8
- data/lib/pah/partials/_layout.rb +0 -7
- data/lib/pah/partials/_letter_opener.rb +0 -11
- data/lib/pah/partials/_locale.rb +0 -24
- data/lib/pah/partials/_newrelic.rb +0 -6
- data/lib/pah/partials/_public.rb +0 -16
- data/lib/pah/partials/_puma.rb +0 -6
- data/lib/pah/partials/_rack_deflater.rb +0 -8
- data/lib/pah/partials/_rack_timeout.rb +0 -4
- data/lib/pah/partials/_readme.rb +0 -6
- data/lib/pah/partials/_rollbar.rb +0 -15
- data/lib/pah/partials/_rspec.rb +0 -17
- data/lib/pah/partials/_ruby_env.rb +0 -16
- data/lib/pah/partials/_secret_token.rb +0 -7
- data/lib/pah/partials/_secure_headers.rb +0 -21
- data/lib/pah/partials/_simple_form.rb +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 395ec87aa2b2c99b1939e94eaa1f2f482e510d16
|
|
4
|
+
data.tar.gz: 0f9a0ecbe68d1e03d5ab33e0c2e94f958d29f54e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 479dff7da6979d18b04df087378a7cf6face24549cef636484cb2655971edaeae9c2fb72b20be1c641029f2cb5fedf7bcc255bc38cc4e301157562c025c54511
|
|
7
|
+
data.tar.gz: e3cec367c946673a9863a0899f181adabf436b07be947feaacdd06f1f29a77e85b8dee4b80cc10da190047f98fa12d427063b39b84ee07146304268adfa039d9
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.1.
|
|
1
|
+
2.1.3
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.0.
|
|
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.
|
|
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.
|
|
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]:
|
|
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]:
|
|
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]:
|
|
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]:
|
|
99
|
+
[travis_badge]: http://img.shields.io/travis/Helabs/pah.svg?style=flat
|
data/Rakefile
CHANGED
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', '
|
|
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}"
|
data/features/bourbon.feature
CHANGED
|
@@ -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
|
-
|
|
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
data/features/gemfile.feature
CHANGED
|
@@ -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
|
+
"""
|
data/features/jumpup.feature
CHANGED
|
@@ -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
|
+
"""
|
data/features/layout.feature
CHANGED
data/features/locale.feature
CHANGED
|
@@ -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
|
"""
|
data/features/public.feature
CHANGED
|
@@ -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.
|
data/features/readme.feature
CHANGED
data/features/rspec.feature
CHANGED
|
@@ -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
|
|
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
|
+
"""
|
data/features/runner.feature
CHANGED
|
@@ -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
|
data/features/support/bin/heroku
CHANGED
data/features/support/env.rb
CHANGED
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
|
data/lib/pah/files/Gemfile
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
|
-
ruby '
|
|
2
|
+
ruby 'RUBY_VERSION'
|
|
3
3
|
|
|
4
4
|
gem 'rails', 'RAILS_VERSION'
|
|
5
|
-
gem 'puma', '2.
|
|
6
|
-
gem 'secure_headers', '1.
|
|
7
|
-
gem 'jquery-rails', '3.1.
|
|
8
|
-
gem 'turbolinks', '2.
|
|
9
|
-
gem 'jbuilder', '2.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', '
|
|
12
|
+
gem 'sass-rails', github: 'rails/sass-rails', ref: '57ec3397ff99655890895df29a7bf3f683410256'
|
|
13
13
|
gem 'coffee-rails', '4.0.1'
|
|
14
|
-
gem 'uglifier', '2.5.
|
|
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', '
|
|
18
|
-
gem 'neat', '1.
|
|
19
|
-
gem 'bitters', '0.10.
|
|
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.
|
|
27
|
-
gem 'rollbar', '0.
|
|
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.
|
|
33
|
-
gem 'jumpup', '0.0.
|
|
32
|
+
gem 'foreman', '0.75.0'
|
|
33
|
+
gem 'jumpup', '0.0.7'
|
|
34
34
|
gem 'jumpup-heroku', '0.0.5'
|
|
35
|
-
gem 'better_errors', '
|
|
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.
|
|
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.
|
|
44
|
-
gem 'simplecov', '0.
|
|
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.
|
|
46
|
+
gem 'capybara', '2.4.3'
|
|
47
47
|
gem 'poltergeist', '1.5.1'
|
|
48
|
-
gem 'vcr', '2.9.
|
|
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
|
|
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'
|
data/lib/pah/files/README.md
CHANGED
|
@@ -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
|
|
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
|
-
##
|
|
70
|
+
## Generated with PAH
|
|
71
71
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
## Made with love by HE:labs
|
|
75
|
-
|
|
76
|
-

|
|
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).
|