kickoff_rails 0.0.3 → 0.0.4

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: 4643649cc70ed7d8d6315b3c3508543ad6e236d4
4
- data.tar.gz: d9760bb5ad59d4cbecd06055e4d1bcfbc7684c53
3
+ metadata.gz: 1e2338a8afd6ada18f18f3b00ce1455bc6856415
4
+ data.tar.gz: 3f224df5021bf14b7f6d2a43ffd3e5fb34851ad3
5
5
  SHA512:
6
- metadata.gz: 3f06c4b338369bedef08a8667276b1d6382af52e4cc81508850426c21842626f56ff119f5b0f4f7e77679a0df984c632caabc017b2444911da201c6cfb2d1b53
7
- data.tar.gz: 7efd92177679833745bb7834eac325477ddb36f61ddc97a95657732e7c8093e6a65bd017714fc8a0be8a4a02330f2e72785ce0977ec5408e4d220f1cd9e87bbb
6
+ metadata.gz: 9a2a8bf72483907df21f0f69901b7cf0abfc7fb8abe48ace076f5107661f40209612a0eb0f07d4559e182ceefdd91af2eac1cd8b68373808bb7ac103be02293c
7
+ data.tar.gz: 4d4f4049aa9e60932100c4e52457b8b1eb1df003d028ad62fad9b7eef5cc146889961ecbee41bb65eb8cf7dc75a4a9d796061217fdae868aa283ff356b6635e4
@@ -0,0 +1,10 @@
1
+ WEB_CONCURRENCY=1
2
+ S3_BUCKET=fixme
3
+ S3_KEY=fixme
4
+ S3_SECRET=fixme
5
+ S3_REGION=sa-east-1
6
+ DOMAIN=localhost:5000
7
+ FACEBOOK_KEY=fixme
8
+ FACEBOOK_SECRET=fixme
9
+ FACEBOOK_ADMINS=fixme
10
+ FACEBOOK_LOCALE=pt_br
@@ -11,6 +11,6 @@ class UnicornGenerator < Rails::Generators::Base
11
11
  copy_file 'config/initializers/timeout.rb', 'config/initializers/timeout.rb'
12
12
  copy_file 'Procfile', 'Procfile'
13
13
  # TODO: add lines to .env instead of copying the role file
14
- copy_file '.env', '.env'
14
+ copy_file 'environment', '.env'
15
15
  end
16
16
  end
@@ -1,3 +1,3 @@
1
1
  module KickoffRails
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kickoff_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julio Protzek
@@ -41,6 +41,7 @@ extra_rdoc_files: []
41
41
  files:
42
42
  - lib/generators/unicorn/templates/config/initializers/timeout.rb
43
43
  - lib/generators/unicorn/templates/config/unicorn.rb
44
+ - lib/generators/unicorn/templates/environment
44
45
  - lib/generators/unicorn/templates/Procfile
45
46
  - lib/generators/unicorn/unicorn_generator.rb
46
47
  - lib/kickoff_rails/version.rb