gitrubydeploy 0.0.12 → 0.0.13
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 +4 -4
- data/lib/generators/git_ruby_deploy/install_generator.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7329e576137c04f4f2e68efa23a0c42f3d3b388a
|
4
|
+
data.tar.gz: 53edec26aa97dc4de282d5f2c3870acbf4e8bc94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52aeb13fd007ec4aeedf23ebc680b302cbb91262e17c83795b656cb76c5681d57bd66ddfd40566769dfadbad7a4c1503095385d4b5b98b1565c34021cfa63c28
|
7
|
+
data.tar.gz: 001de61e05b0bd9e35aec3dc283267c4251ed94fd760acecf6de3333356471671e57c2e9e34ba15f98b5a99e4ca26459f95b0479e56743989f1ab01d36a25f38
|
@@ -18,7 +18,7 @@ module GitRubyDeploy
|
|
18
18
|
|
19
19
|
# Generator Code. Remember this is just suped-up Thor so methods are executed in order
|
20
20
|
def copy_files
|
21
|
-
copy_file 'config/controllers/
|
21
|
+
copy_file 'config/controllers/git_deploy_controller.rb', 'app/controllers/git_deploy_controller.rb'
|
22
22
|
inject_into_file 'config/routes.rb',"post '/deploy', to: 'git_deploy_controller#deploy'\n", :before => /^end/
|
23
23
|
end
|
24
24
|
|