start 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b830f903a44b84bbe853b5b60050d1a2d1f93bf
|
4
|
+
data.tar.gz: 64375c7c2411b64c1477ba7fc700ed1b6ac5c76b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e0b52ac0e43780c718ebba3e99546f4d6fbe9e1e4d34275a60159d387a015ce482c8a6b563dcaa4d07b8f37e5fc0b5d7be572a701cdece24ff1262b98c77464
|
7
|
+
data.tar.gz: fff5620d8c15b93f748f8f99822dae3a79a3b51facdb9d3fb11381ab7ff0c89c9e66af4be431238efa9b9e033d82aabf9102d1c0c7e5c85c3641e3647e7fb3c9
|
data/README.rdoc
CHANGED
@@ -1,16 +1,20 @@
|
|
1
|
-
=
|
1
|
+
= Start
|
2
2
|
|
3
|
-
|
3
|
+
Start is a collection of Rails generators for faster project setup.
|
4
4
|
|
5
5
|
== Setup
|
6
6
|
|
7
7
|
Add the gem to your Gemfile.
|
8
8
|
|
9
|
-
gem "
|
9
|
+
gem "start", group: :development
|
10
10
|
|
11
11
|
Then you can run any of the included generators.
|
12
12
|
|
13
|
-
rails g unicorn
|
13
|
+
rails g start:unicorn
|
14
14
|
|
15
15
|
== Included Generators
|
16
|
-
* unicorn
|
16
|
+
* start:unicorn - unicorn setup based on https://devcenter.heroku.com/articles/rails-unicorn
|
17
|
+
* start:heroku_wake_up - visits website every 10min to make sure that heroku dyno is awake
|
18
|
+
* start:locale - pt-BR for rails, devise and simple_form
|
19
|
+
* start:slim - installs g siml-rails gem and replaces application.erb with application.slim
|
20
|
+
* start:heroku - add gem rails_12factor
|
data/lib/start/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: start
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julio Protzek
|
@@ -39,6 +39,8 @@ executables: []
|
|
39
39
|
extensions: []
|
40
40
|
extra_rdoc_files: []
|
41
41
|
files:
|
42
|
+
- lib/generators/start/heroku/slim_generator.rb
|
43
|
+
- lib/generators/start/heroku/templates/application.html.slim
|
42
44
|
- lib/generators/start/heroku_wake_up/heroku_wake_up_generator.rb
|
43
45
|
- lib/generators/start/heroku_wake_up/templates/config/initializers/heroku_wake_up.rb
|
44
46
|
- lib/generators/start/locales/locales_generator.rb
|