start 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/start/heroku_wake_up/heroku_wake_up_generator.rb +11 -0
- data/lib/generators/start/heroku_wake_up/templates/config/initializers/heroku_wake_up.rb +11 -0
- data/lib/generators/{locales → start/locales}/locales_generator.rb +1 -1
- data/lib/generators/{locales → start/locales}/templates/config/locales/devise.pt-br.yml +0 -0
- data/lib/generators/{locales → start/locales}/templates/config/locales/pt-br.yml +0 -0
- data/lib/generators/{locales → start/locales}/templates/config/locales/simple_form.pt-br.yml +0 -0
- data/lib/generators/{slim → start/slim}/slim_generator.rb +1 -1
- data/lib/generators/{slim → start/slim}/templates/application.html.slim +0 -0
- data/lib/generators/{unicorn → start/unicorn}/templates/Procfile +0 -0
- data/lib/generators/{unicorn → start/unicorn}/templates/config/initializers/timeout.rb +0 -0
- data/lib/generators/{unicorn → start/unicorn}/templates/config/unicorn.rb +0 -0
- data/lib/generators/{unicorn → start/unicorn}/templates/environment +0 -0
- data/lib/generators/{unicorn → start/unicorn}/unicorn_generator.rb +1 -1
- data/lib/start/version.rb +1 -1
- metadata +14 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34974b8b86d56e440ba02f2b21a5701b101883f2
|
4
|
+
data.tar.gz: 7823b1568057250c7eabcf77e9a85167c214e82d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eaf57948b27e6dc20239f1e5fe2115db63e5048178928d55a763cb7cf57cb047f8e4c757b6108b71aa51583c0072af3f4a16da05c2da244cf127ea78f63607f2
|
7
|
+
data.tar.gz: 309b3393413656d80ff32354326c0b9ab359e38ad39304f1179c1dd6dd4b5397ac68ec359d7e390adade52d335cd74fe5fb665963467738bcceeb35ddba2edbc
|
@@ -0,0 +1,11 @@
|
|
1
|
+
class Start::HerokuWakeUpGenerator < Rails::Generators::Base
|
2
|
+
source_root File.expand_path("../templates", __FILE__)
|
3
|
+
|
4
|
+
def add_gems
|
5
|
+
gem 'rufus-scheduler', '~> 2.0.19', group: :production
|
6
|
+
end
|
7
|
+
|
8
|
+
def copy_files
|
9
|
+
copy_file 'config/initializers/heroku_wake_up.rb', 'config/initializers/heroku_wake_up.rb'
|
10
|
+
end
|
11
|
+
end
|
File without changes
|
File without changes
|
data/lib/generators/{locales → start/locales}/templates/config/locales/simple_form.pt-br.yml
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
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.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julio Protzek
|
@@ -39,17 +39,19 @@ executables: []
|
|
39
39
|
extensions: []
|
40
40
|
extra_rdoc_files: []
|
41
41
|
files:
|
42
|
-
- lib/generators/
|
43
|
-
- lib/generators/
|
44
|
-
- lib/generators/
|
45
|
-
- lib/generators/locales/templates/config/locales/
|
46
|
-
- lib/generators/
|
47
|
-
- lib/generators/
|
48
|
-
- lib/generators/
|
49
|
-
- lib/generators/
|
50
|
-
- lib/generators/unicorn/templates/
|
51
|
-
- lib/generators/unicorn/templates/
|
52
|
-
- lib/generators/unicorn/
|
42
|
+
- lib/generators/start/heroku_wake_up/heroku_wake_up_generator.rb
|
43
|
+
- lib/generators/start/heroku_wake_up/templates/config/initializers/heroku_wake_up.rb
|
44
|
+
- lib/generators/start/locales/locales_generator.rb
|
45
|
+
- lib/generators/start/locales/templates/config/locales/devise.pt-br.yml
|
46
|
+
- lib/generators/start/locales/templates/config/locales/pt-br.yml
|
47
|
+
- lib/generators/start/locales/templates/config/locales/simple_form.pt-br.yml
|
48
|
+
- lib/generators/start/slim/slim_generator.rb
|
49
|
+
- lib/generators/start/slim/templates/application.html.slim
|
50
|
+
- lib/generators/start/unicorn/templates/config/initializers/timeout.rb
|
51
|
+
- lib/generators/start/unicorn/templates/config/unicorn.rb
|
52
|
+
- lib/generators/start/unicorn/templates/environment
|
53
|
+
- lib/generators/start/unicorn/templates/Procfile
|
54
|
+
- lib/generators/start/unicorn/unicorn_generator.rb
|
53
55
|
- lib/start/version.rb
|
54
56
|
- lib/start.rb
|
55
57
|
- lib/tasks/start_tasks.rake
|