start 0.0.6
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +16 -0
- data/Rakefile +32 -0
- data/lib/generators/locales/locales_generator.rb +9 -0
- data/lib/generators/locales/templates/config/locales/devise.pt-br.yml +57 -0
- data/lib/generators/locales/templates/config/locales/pt-br.yml +231 -0
- data/lib/generators/locales/templates/config/locales/simple_form.pt-br.yml +24 -0
- data/lib/generators/slim/slim_generator.rb +24 -0
- data/lib/generators/slim/templates/application.html.slim +9 -0
- data/lib/generators/unicorn/templates/Procfile +1 -0
- data/lib/generators/unicorn/templates/config/initializers/timeout.rb +1 -0
- data/lib/generators/unicorn/templates/config/unicorn.rb +24 -0
- data/lib/generators/unicorn/templates/environment +10 -0
- data/lib/generators/unicorn/unicorn_generator.rb +16 -0
- data/lib/start.rb +2 -0
- data/lib/start/version.rb +3 -0
- data/lib/tasks/start_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/kickoff_rails_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +149 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 58f131646ed53f0d57a66a142ad3f49e39f1c2fb
|
4
|
+
data.tar.gz: a9356a8b39feefe41ef1c47b9581225f8f7bd03b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8aca227ab004a5d9482c5659b0eb51ca84854c56ae94320289e5ba740af7620a169aea7b0b8655320c7e0052962b74410c9bb748a9070f637a2c880978981d88
|
7
|
+
data.tar.gz: fc3130424a5a53d02fcd415af285eb08c9422b8e683f0de2a5423147a3dd90eef2bc6990753b4bac0a482f5d23e38dcf9000772dcee1f9e7500356ee140c9fc1
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2013 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
= KickoffRails
|
2
|
+
|
3
|
+
KickoffRails is a collection of Rails generators for faster project setup.
|
4
|
+
|
5
|
+
== Setup
|
6
|
+
|
7
|
+
Add the gem to your Gemfile.
|
8
|
+
|
9
|
+
gem "kickoff_rails", group: :development
|
10
|
+
|
11
|
+
Then you can run any of the included generators.
|
12
|
+
|
13
|
+
rails g unicorn
|
14
|
+
|
15
|
+
== Included Generators
|
16
|
+
* unicorn: generates config files for unicorn setup based on https://devcenter.heroku.com/articles/rails-unicorn
|
data/Rakefile
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'KickoffRails'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
Bundler::GemHelper.install_tasks
|
21
|
+
|
22
|
+
require 'rake/testtask'
|
23
|
+
|
24
|
+
Rake::TestTask.new(:test) do |t|
|
25
|
+
t.libs << 'lib'
|
26
|
+
t.libs << 'test'
|
27
|
+
t.pattern = 'test/**/*_test.rb'
|
28
|
+
t.verbose = false
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
task default: :test
|
@@ -0,0 +1,9 @@
|
|
1
|
+
class LocalesGenerator < Rails::Generators::Base
|
2
|
+
source_root File.expand_path("../templates", __FILE__)
|
3
|
+
|
4
|
+
def copy_files
|
5
|
+
copy_file 'config/locales/pt-br.yml', 'config/locales/pt-br.yml'
|
6
|
+
copy_file 'config/locales/devise.pt-br.yml', 'config/locales/devise.pt-br.yml'
|
7
|
+
copy_file 'config/locales/simple_form.pt-br.yml', 'config/locales/simple_form.pt-br.yml'
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
|
2
|
+
pt-BR:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
expired: 'expirou, por favor solicite um novo'
|
6
|
+
not_found: 'não encontrado'
|
7
|
+
already_confirmed: 'já foi confirmado, por favor tente fazer login'
|
8
|
+
not_locked: 'não estava bloqueado'
|
9
|
+
not_saved:
|
10
|
+
one: "1 erro impediu que %{resource} fosse salvo:"
|
11
|
+
other: "%{count} erros impediram que %{resource} fosse salvo:"
|
12
|
+
|
13
|
+
devise:
|
14
|
+
failure:
|
15
|
+
already_authenticated: 'Você já está logado.'
|
16
|
+
unauthenticated: 'Você precisa registrar-se ou fazer login para continuar.'
|
17
|
+
unconfirmed: 'Você deve confirmar sua conta antes de continuar.'
|
18
|
+
locked: 'Sua conta está bloqueada.'
|
19
|
+
invalid: 'E-mail e senha inválidos'
|
20
|
+
invalid_token: 'Token de autenticação inválido.'
|
21
|
+
timeout: 'A sua sessão expirou, por favor faça login novamente para continuar.'
|
22
|
+
inactive: 'A sua conta não foi ativada ainda.'
|
23
|
+
sessions:
|
24
|
+
signed_in: 'Autenticado com sucesso.'
|
25
|
+
signed_out: 'Logout feito com sucesso.'
|
26
|
+
passwords:
|
27
|
+
send_instructions: 'Você receberá um e-mail com instruções sobre como reinicializar sua senha em poucos minutos.'
|
28
|
+
updated: 'Sua senha foi alterada com sucesso. Você está logado agora.'
|
29
|
+
updated_not_active: 'Sua senha foi alterada com sucesso.'
|
30
|
+
send_paranoid_instructions: 'Caso seu e-mail esteja cadastrado, você receberá um link para recuperação de senha no seu e-mail em poucos minutos.'
|
31
|
+
no_token: 'Você não pode acessar esta página sem que seja a partir de um e-mail de reinicialização de senha. Se você chegou aqui através de um e-mail de reinicialização de senha, por favor verifique se você usou a URL completa que foi informada.'
|
32
|
+
confirmations:
|
33
|
+
send_instructions: 'Dentro de minutos você receberá um e-mail com instruções para confirmar a sua conta.'
|
34
|
+
send_paranoid_instructions: 'Caso seu e-mail exista em nossa base, você receberá um e-mail em poucos minutos com instruções sobre como confirmar sua conta.'
|
35
|
+
confirmed: 'Sua conta foi confirmada com sucesso. Você está logado.'
|
36
|
+
registrations:
|
37
|
+
signed_up: 'Bem-vindo! Você se registrou com sucesso.'
|
38
|
+
signed_up_but_unconfirmed: 'Uma mensagem com um link de confirmação foi enviado para o seu e-mail. Por favor, abra o link para ativar sua conta.'
|
39
|
+
signed_up_but_inactive: 'Você se cadastrou com sucesso. Porém, sua conta ainda não está ativada.'
|
40
|
+
signed_up_but_locked: 'Você se cadastrou com sucesso. Porém, sua conta está bloqueada.'
|
41
|
+
updated: 'Você atualizou sua conta com sucesso.'
|
42
|
+
update_needs_confirmation: 'Você atualizou sua conta com sucesso, mas nós precisamos verificar seu endereço de e-mail. Por favor, verifique seus e-mails e clique no link de confirmação para finalizar a criação da sua conta.'
|
43
|
+
destroyed: 'Até mais! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve.'
|
44
|
+
unlocks:
|
45
|
+
send_instructions: 'Você receberá um e-mail em poucos minutos com instruções sobre como desbloquear sua conta.'
|
46
|
+
unlocked: 'Sua conta foi desbloqueada com sucesso. Por favor, faça login para continuar.'
|
47
|
+
send_paranoid_instructions: 'Caso sua e-mail exista em nossa base, você receberá um e-mail em poucos minutos com instruções sobre como desbloqueá-la.'
|
48
|
+
omniauth_callbacks:
|
49
|
+
success: "Autorizado com sucesso pela conta %{kind}."
|
50
|
+
failure: 'Não foi possível autorizar você através do %{kind} porque "%{reason}".'
|
51
|
+
mailer:
|
52
|
+
confirmation_instructions:
|
53
|
+
subject: 'Instruções para confirmação de conta'
|
54
|
+
reset_password_instructions:
|
55
|
+
subject: 'Instruções para reinicialização de senha'
|
56
|
+
unlock_instructions:
|
57
|
+
subject: 'Instruções para desbloqueio de conta'
|
@@ -0,0 +1,231 @@
|
|
1
|
+
pt-BR:
|
2
|
+
date:
|
3
|
+
abbr_day_names:
|
4
|
+
- Dom
|
5
|
+
- Seg
|
6
|
+
- Ter
|
7
|
+
- Qua
|
8
|
+
- Qui
|
9
|
+
- Sex
|
10
|
+
- Sáb
|
11
|
+
abbr_month_names:
|
12
|
+
-
|
13
|
+
- Jan
|
14
|
+
- Fev
|
15
|
+
- Mar
|
16
|
+
- Abr
|
17
|
+
- Mai
|
18
|
+
- Jun
|
19
|
+
- Jul
|
20
|
+
- Ago
|
21
|
+
- Set
|
22
|
+
- Out
|
23
|
+
- Nov
|
24
|
+
- Dez
|
25
|
+
day_names:
|
26
|
+
- Domingo
|
27
|
+
- Segunda
|
28
|
+
- Terça
|
29
|
+
- Quarta
|
30
|
+
- Quinta
|
31
|
+
- Sexta
|
32
|
+
- Sábado
|
33
|
+
formats:
|
34
|
+
default: ! '%d/%m/%Y'
|
35
|
+
long: ! '%d de %B de %Y'
|
36
|
+
complete: ! '%A %d de %B de %Y'
|
37
|
+
short: ! '%d de %B'
|
38
|
+
month_names:
|
39
|
+
-
|
40
|
+
- Janeiro
|
41
|
+
- Fevereiro
|
42
|
+
- Março
|
43
|
+
- Abril
|
44
|
+
- Maio
|
45
|
+
- Junho
|
46
|
+
- Julho
|
47
|
+
- Agosto
|
48
|
+
- Setembro
|
49
|
+
- Outubro
|
50
|
+
- Novembro
|
51
|
+
- Dezembro
|
52
|
+
order:
|
53
|
+
- :day
|
54
|
+
- :month
|
55
|
+
- :year
|
56
|
+
datetime:
|
57
|
+
distance_in_words:
|
58
|
+
about_x_hours:
|
59
|
+
one: aproximadamente 1 hora
|
60
|
+
other: aproximadamente %{count} horas
|
61
|
+
about_x_months:
|
62
|
+
one: aproximadamente 1 mês
|
63
|
+
other: aproximadamente %{count} meses
|
64
|
+
about_x_years:
|
65
|
+
one: aproximadamente 1 ano
|
66
|
+
other: aproximadamente %{count} anos
|
67
|
+
almost_x_years:
|
68
|
+
one: quase 1 ano
|
69
|
+
other: quase %{count} anos
|
70
|
+
half_a_minute: meio minuto
|
71
|
+
less_than_x_minutes:
|
72
|
+
one: menos de um minuto
|
73
|
+
other: menos de %{count} minutos
|
74
|
+
less_than_x_seconds:
|
75
|
+
one: menos de 1 segundo
|
76
|
+
other: menos de %{count} segundos
|
77
|
+
over_x_years:
|
78
|
+
one: mais de 1 ano
|
79
|
+
other: mais de %{count} anos
|
80
|
+
x_days:
|
81
|
+
one: 1 dia
|
82
|
+
other: ! '%{count} dias'
|
83
|
+
x_minutes:
|
84
|
+
one: 1 minuto
|
85
|
+
other: ! '%{count} minutos'
|
86
|
+
x_months:
|
87
|
+
one: 1 mês
|
88
|
+
other: ! '%{count} meses'
|
89
|
+
x_seconds:
|
90
|
+
one: 1 segundo
|
91
|
+
other: ! '%{count} segundos'
|
92
|
+
prompts:
|
93
|
+
day: Dia
|
94
|
+
hour: Hora
|
95
|
+
minute: Minuto
|
96
|
+
month: Mês
|
97
|
+
second: Segundo
|
98
|
+
year: Ano
|
99
|
+
errors: &errors
|
100
|
+
format: ! '%{attribute} %{message}'
|
101
|
+
messages:
|
102
|
+
accepted: deve ser aceito
|
103
|
+
blank: não pode ficar em branco
|
104
|
+
confirmation: não está de acordo com a confirmação
|
105
|
+
empty: não pode ficar vazio
|
106
|
+
equal_to: deve ser igual a %{count}
|
107
|
+
even: deve ser par
|
108
|
+
exclusion: não está disponível
|
109
|
+
greater_than: deve ser maior que %{count}
|
110
|
+
greater_than_or_equal_to: deve ser maior ou igual a %{count}
|
111
|
+
inclusion: não está incluído na lista
|
112
|
+
invalid: não é válido
|
113
|
+
less_than: deve ser menor que %{count}
|
114
|
+
less_than_or_equal_to: deve ser menor ou igual a %{count}
|
115
|
+
not_a_number: não é um número
|
116
|
+
not_an_integer: não é um número inteiro
|
117
|
+
odd: deve ser ímpar
|
118
|
+
record_invalid: ! 'A validação falhou: %{errors}'
|
119
|
+
taken: já está em uso
|
120
|
+
too_long: ! 'é muito longo (máximo: %{count} caracteres)'
|
121
|
+
too_short: ! 'é muito curto (mínimo: %{count} caracteres)'
|
122
|
+
wrong_length: não possui o tamanho esperado (%{count} caracteres)
|
123
|
+
template:
|
124
|
+
body: ! 'Por favor, verifique o(s) seguinte(s) campo(s):'
|
125
|
+
header:
|
126
|
+
one: ! 'Não foi possível gravar %{model}: 1 erro'
|
127
|
+
other: ! 'Não foi possível gravar %{model}: %{count} erros.'
|
128
|
+
helpers:
|
129
|
+
select:
|
130
|
+
prompt: Por favor selecione
|
131
|
+
submit:
|
132
|
+
create: Criar %{model}
|
133
|
+
submit: Salvar %{model}
|
134
|
+
update: Atualizar %{model}
|
135
|
+
number:
|
136
|
+
currency:
|
137
|
+
format:
|
138
|
+
delimiter: .
|
139
|
+
format: ! '%u %n'
|
140
|
+
precision: 2
|
141
|
+
separator: ! ','
|
142
|
+
significant: false
|
143
|
+
strip_insignificant_zeros: false
|
144
|
+
unit: R$
|
145
|
+
format:
|
146
|
+
delimiter: .
|
147
|
+
precision: 3
|
148
|
+
separator: ! ','
|
149
|
+
significant: false
|
150
|
+
strip_insignificant_zeros: false
|
151
|
+
human:
|
152
|
+
decimal_units:
|
153
|
+
format: ! '%n %u'
|
154
|
+
units:
|
155
|
+
billion:
|
156
|
+
one: bilhão
|
157
|
+
other: bilhões
|
158
|
+
million:
|
159
|
+
one: milhão
|
160
|
+
other: milhões
|
161
|
+
quadrillion:
|
162
|
+
one: quatrilhão
|
163
|
+
other: quatrilhões
|
164
|
+
thousand: mil
|
165
|
+
trillion:
|
166
|
+
one: trilhão
|
167
|
+
other: trilhões
|
168
|
+
unit: ''
|
169
|
+
format:
|
170
|
+
delimiter: .
|
171
|
+
precision: 2
|
172
|
+
significant: true
|
173
|
+
strip_insignificant_zeros: true
|
174
|
+
storage_units:
|
175
|
+
format: ! '%n %u'
|
176
|
+
units:
|
177
|
+
byte:
|
178
|
+
one: Byte
|
179
|
+
other: Bytes
|
180
|
+
gb: GB
|
181
|
+
kb: KB
|
182
|
+
mb: MB
|
183
|
+
tb: TB
|
184
|
+
percentage:
|
185
|
+
format:
|
186
|
+
delimiter: .
|
187
|
+
precision:
|
188
|
+
format:
|
189
|
+
delimiter: .
|
190
|
+
support:
|
191
|
+
array:
|
192
|
+
last_word_connector: ! ' e '
|
193
|
+
two_words_connector: ! ' e '
|
194
|
+
words_connector: ! ', '
|
195
|
+
time:
|
196
|
+
am: ''
|
197
|
+
formats:
|
198
|
+
default: ! '%A, %d de %B de %Y às %H:%Mh'
|
199
|
+
long: ! '%A, %d de %B de %Y, %H:%M h'
|
200
|
+
complete_date: ! '%A, %d de %B de %Y'
|
201
|
+
short: ! '%d %b %Y, %H:%M h'
|
202
|
+
hour: ! "%H:%Mh"
|
203
|
+
day: ! "%d %b %Y"
|
204
|
+
pm: ''
|
205
|
+
# remove these aliases after 'activemodel' and 'activerecord' namespaces are removed from Rails repository
|
206
|
+
activemodel:
|
207
|
+
errors:
|
208
|
+
<<: *errors
|
209
|
+
activerecord:
|
210
|
+
models:
|
211
|
+
user: Usuário
|
212
|
+
attributes:
|
213
|
+
user:
|
214
|
+
name: Nome
|
215
|
+
|
216
|
+
errors:
|
217
|
+
<<: *errors
|
218
|
+
|
219
|
+
helpers:
|
220
|
+
submit:
|
221
|
+
user:
|
222
|
+
create: 'Novo %{model}'
|
223
|
+
update: 'Salvar'
|
224
|
+
|
225
|
+
views:
|
226
|
+
pagination:
|
227
|
+
first: "« Primeira"
|
228
|
+
last: "Última »"
|
229
|
+
previous: "‹ Anterior"
|
230
|
+
next: "Próxima ›"
|
231
|
+
truncate: "..."
|
@@ -0,0 +1,24 @@
|
|
1
|
+
pt-BR:
|
2
|
+
simple_form:
|
3
|
+
yes: Sim
|
4
|
+
no: Não
|
5
|
+
required:
|
6
|
+
text: obrigatório
|
7
|
+
mark: "*"
|
8
|
+
# You can uncomment the line below if you need to overwrite the whole required html.
|
9
|
+
# When using html, text and mark won't be used.
|
10
|
+
# html: "<abbr title="required">*</abbr>"
|
11
|
+
error_notification:
|
12
|
+
default_message: "Por favor, corrija os problemas abaixo:"
|
13
|
+
# Labels and hints examples
|
14
|
+
labels:
|
15
|
+
defaults:
|
16
|
+
password: Senha
|
17
|
+
name: Nome
|
18
|
+
# hints:
|
19
|
+
# defaults:
|
20
|
+
# password: 'Mínimo de 8 caracteres.'
|
21
|
+
# placeholders:
|
22
|
+
# defaults:
|
23
|
+
# name: 'Nome'
|
24
|
+
# password: '****'
|
@@ -0,0 +1,24 @@
|
|
1
|
+
class SlimGenerator < Rails::Generators::Base
|
2
|
+
source_root File.expand_path("../templates", __FILE__)
|
3
|
+
|
4
|
+
def add_gems
|
5
|
+
gem 'slim-rails', '~> 2.0.1'
|
6
|
+
end
|
7
|
+
|
8
|
+
def copy_files
|
9
|
+
# copy_file 'config/unicorn.rb', 'config/unicorn.rb'
|
10
|
+
|
11
|
+
application do
|
12
|
+
"Slim::Engine.set_default_options format: :html5"
|
13
|
+
end
|
14
|
+
|
15
|
+
application(nil, env: "development") do
|
16
|
+
"Slim::Engine.set_default_options pretty: true, sort_attrs: false"
|
17
|
+
end
|
18
|
+
|
19
|
+
application(nil, env: "development") do
|
20
|
+
"Slim::Engine.set_default_options tabsize: 2"
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
|
@@ -0,0 +1 @@
|
|
1
|
+
Rack::Timeout.timeout = 10 # seconds
|