silvermind_deployment 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: 5d63a944b3114f98d226e086a4e1c18c11fbfcc1
4
- data.tar.gz: 2e0adff2f5b058db8478aa2805fba13c85860b30
3
+ metadata.gz: 9c731ca700193f3096f99103d2aa4717025f7349
4
+ data.tar.gz: 31a6a74325ef552396542738b6e6352bf9dcb039
5
5
  SHA512:
6
- metadata.gz: cb85b916ba3683e9c629aa7721286c8db0c5ef5151b596bb2dea772c17d29676ba917835600c58287537c4fa2822702e075b13cfdcab2199eb6bf72d1a5add63
7
- data.tar.gz: 3cffe525a55459331934a4839928edc8fb8fab1d0144b900062b10bec8afafdb3bffade30ddacac2c30b0ccb2f453ec70a669274b6bff3ef03b421d0f23d1b6d
6
+ metadata.gz: c68694e18a0798091f46de611f7f1fb807aa2f64cd7deb33ee9a4670dd697e153818151d96961ca58251dfec2248eaa923982566d15c8f114e71fff19e5ac134
7
+ data.tar.gz: 7ab20959fa116ea89194ea8c1e64ae24a83d2dafdf96fd4de6830ee873014a6848dba72f9ad151cc27f589580015c0d7e4e81e94edf7f2e74b6ec5e681809d69
@@ -0,0 +1,2 @@
1
+ Description:
2
+ This generator installs the Silvermind Deployment Templates
@@ -0,0 +1,14 @@
1
+ # require 'rails/generators'
2
+ #
3
+ module SilvermindDeployment
4
+ class InstallGenerator < ::Rails::Generators::Base
5
+ desc "This generator installs the Silvermind Deployment Templates"
6
+
7
+ source_root File.expand_path(File.join(File.dirname(__FILE__), 'templates'))
8
+
9
+ def copy_unicorn
10
+ template 'unicorn.rb', 'config/unicorn.rb'
11
+ end
12
+
13
+ end
14
+ end
@@ -0,0 +1 @@
1
+ # DEMO TEMPLATE FILE
@@ -1,3 +1,3 @@
1
1
  module SilvermindDeployment
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: silvermind_deployment
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
  - Severin Ulrich
@@ -153,6 +153,9 @@ files:
153
153
  - Rakefile
154
154
  - bin/console
155
155
  - bin/setup
156
+ - lib/generators/silvermind_deployment/install/USAGE
157
+ - lib/generators/silvermind_deployment/install/install_generator.rb
158
+ - lib/generators/silvermind_deployment/install/templates/unicorn.rb
156
159
  - lib/silvermind_deployment.rb
157
160
  - lib/silvermind_deployment/version.rb
158
161
  - silvermind_deployment.gemspec