unicorn_deployer 0.0.1.3 → 0.0.1.4

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: ff668bfea6500d470e4ad260fdad903dec8a241a
4
- data.tar.gz: b9b842091d697ebd998f05b989c6db1351b8c959
3
+ metadata.gz: 0efcc1b6052d0a0acd7ff2812786eabaab1c2d6a
4
+ data.tar.gz: 2ada794a5aa8510caf869e36ec7037d26e2413bb
5
5
  SHA512:
6
- metadata.gz: 32cc5e4459f94b10219c05a493a00b08f2725b5c278353ac6076e8338653fb4345a01a46493f4a0d6f7de75adbdb1fa3e28fb8104fbb073b4e5bdd8c8ce9a8e2
7
- data.tar.gz: ac944d250cd2d5b479bfb9598cbfe7952834466a03b07635053cab6e19ac5d72830794b5df63ac95c77e843c2ef56e6532b7757de4e6c890af88fe41a2e50dad
6
+ metadata.gz: 5a38e837729197b3418d2e43f5f3f19372719d7ec191a869dd2f1cc32c933a31483f2000707e1b92c2a72897207b4985f511377ada7854a2a394b689c0dd7547
7
+ data.tar.gz: a313635bb49801606ab22c677cefd59399bd8ceac03d3535f6bca0d7b898548f0758db6b2c51bdf134c7443b5dc743f02d4509278088e7b51cba53e964b94870
@@ -1,3 +1,3 @@
1
1
  module UnicornDeployer
2
- VERSION = "0.0.1.3"
2
+ VERSION = "0.0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicorn_deployer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.3
4
+ version: 0.0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ismail Akram
@@ -88,11 +88,6 @@ executables: []
88
88
  extensions: []
89
89
  extra_rdoc_files: []
90
90
  files:
91
- - app/assets/javascripts/unicorn_deployer/application.js
92
- - app/assets/stylesheets/unicorn_deployer/application.css
93
- - app/controllers/unicorn_deployer/application_controller.rb
94
- - app/helpers/unicorn_deployer/application_helper.rb
95
- - app/views/layouts/unicorn_deployer/application.html.erb
96
91
  - config/environment.rb
97
92
  - config/nginx.conf
98
93
  - config/routes.rb
@@ -1,16 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // compiled file.
9
- //
10
- // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
- // GO AFTER THE REQUIRES BELOW.
12
- //
13
- //= require jquery
14
- //= require jquery_ujs
15
- //= require turbolinks
16
- //= require_tree .
@@ -1,13 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the top of the
9
- * compiled file, but it's generally better to create a new file per style scope.
10
- *
11
- *= require_self
12
- *= require_tree .
13
- */
@@ -1,4 +0,0 @@
1
- module UnicornDeployer
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module UnicornDeployer
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>UnicornDeployer</title>
5
- <%= stylesheet_link_tag "unicorn_deployer/application", media: "all" %>
6
- <%= javascript_include_tag "unicorn_deployer/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>