start 0.0.7 → 0.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34974b8b86d56e440ba02f2b21a5701b101883f2
4
- data.tar.gz: 7823b1568057250c7eabcf77e9a85167c214e82d
3
+ metadata.gz: 3b830f903a44b84bbe853b5b60050d1a2d1f93bf
4
+ data.tar.gz: 64375c7c2411b64c1477ba7fc700ed1b6ac5c76b
5
5
  SHA512:
6
- metadata.gz: eaf57948b27e6dc20239f1e5fe2115db63e5048178928d55a763cb7cf57cb047f8e4c757b6108b71aa51583c0072af3f4a16da05c2da244cf127ea78f63607f2
7
- data.tar.gz: 309b3393413656d80ff32354326c0b9ab359e38ad39304f1179c1dd6dd4b5397ac68ec359d7e390adade52d335cd74fe5fb665963467738bcceeb35ddba2edbc
6
+ metadata.gz: 6e0b52ac0e43780c718ebba3e99546f4d6fbe9e1e4d34275a60159d387a015ce482c8a6b563dcaa4d07b8f37e5fc0b5d7be572a701cdece24ff1262b98c77464
7
+ data.tar.gz: fff5620d8c15b93f748f8f99822dae3a79a3b51facdb9d3fb11381ab7ff0c89c9e66af4be431238efa9b9e033d82aabf9102d1c0c7e5c85c3641e3647e7fb3c9
@@ -1,16 +1,20 @@
1
- = KickoffRails
1
+ = Start
2
2
 
3
- KickoffRails is a collection of Rails generators for faster project setup.
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 "kickoff_rails", group: :development
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: generates config files for unicorn setup based on https://devcenter.heroku.com/articles/rails-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
@@ -0,0 +1,5 @@
1
+ class Start::HerokuGenerator < Rails::Generators::Base
2
+ def add_gems
3
+ gem 'rails_12factor', group: :production
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ doctype
2
+ html
3
+ head
4
+ title My App
5
+ = stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
6
+ = javascript_include_tag 'application', 'data-turbolinks-track' => true
7
+ = csrf_meta_tags
8
+ body
9
+ = yield
@@ -1,3 +1,3 @@
1
1
  module Start
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
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.7
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