geordi 0.12.5 → 0.12.6
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.
- data/bin/install-gems-remotely +13 -0
- data/bin/power-deploy +14 -4
- data/lib/geordi/version.rb +1 -1
- metadata +6 -7
data/bin/install-gems-remotely
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
warn <<EOWARNING
|
|
5
|
+
|
|
6
|
+
********************************************************
|
|
7
|
+
install-gems-remotely is deprecated
|
|
8
|
+
-----------------------------------
|
|
9
|
+
|
|
10
|
+
Gems should be automatically installed when deploying.
|
|
11
|
+
If they aren't: See http://gembundler.com/deploying.html
|
|
12
|
+
********************************************************
|
|
13
|
+
|
|
14
|
+
EOWARNING
|
|
15
|
+
|
|
3
16
|
# sorry
|
|
4
17
|
path = Gem.bin_path('geordi', 'install-gems-remotely.sh')
|
|
5
18
|
exec path, *ARGV
|
data/bin/power-deploy
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
+
warn <<EOWARNING
|
|
4
|
+
|
|
5
|
+
**********************************************************************
|
|
6
|
+
power-deploy is deprecated
|
|
7
|
+
--------------------------
|
|
8
|
+
|
|
9
|
+
You should simply use "cap deploy:migrations"
|
|
10
|
+
|
|
11
|
+
If that does not do what you want, you should fix your deploy scripts.
|
|
12
|
+
See http://makandracards.com/makandra/1176
|
|
13
|
+
**********************************************************************
|
|
14
|
+
|
|
15
|
+
EOWARNING
|
|
16
|
+
|
|
3
17
|
stage = ARGV[0]
|
|
4
|
-
puts "NOTE: This Script is considered legacy and will be removed eventually."
|
|
5
|
-
puts "NOTE: You should fix your deploy scripts (see http://makandra.com/notes/1176-which-capistrano-hooks-to-use-for-events-to-happen-on-both-cap-deploy-and-cap-deploy-migrations)"
|
|
6
|
-
puts "NOTE: and use `cap deploy:migrations` (see http://makandra.com/notes/1000-deploy-and-migrate-with-a-single-capistrano-command) instead."
|
|
7
|
-
puts
|
|
8
18
|
exec "cap #{stage} deploy && cap #{stage} deploy:migrate && cap #{stage} deploy:restart"
|
data/lib/geordi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geordi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 35
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 12
|
|
9
|
-
-
|
|
10
|
-
version: 0.12.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.12.6
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Henning Koch
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2012-05-18 00:00:00 Z
|
|
20
19
|
dependencies: []
|
|
21
20
|
|
|
22
21
|
description: Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.
|
|
@@ -78,7 +77,6 @@ files:
|
|
|
78
77
|
- lib/geordi/gitpt.rb
|
|
79
78
|
- lib/geordi/setup_firefox_for_selenium.rb
|
|
80
79
|
- lib/geordi/version.rb
|
|
81
|
-
has_rdoc: true
|
|
82
80
|
homepage: http://makandra.com
|
|
83
81
|
licenses: []
|
|
84
82
|
|
|
@@ -108,9 +106,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
106
|
requirements: []
|
|
109
107
|
|
|
110
108
|
rubyforge_project: geordi
|
|
111
|
-
rubygems_version: 1.
|
|
109
|
+
rubygems_version: 1.8.10
|
|
112
110
|
signing_key:
|
|
113
111
|
specification_version: 3
|
|
114
112
|
summary: Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.
|
|
115
113
|
test_files: []
|
|
116
114
|
|
|
115
|
+
has_rdoc:
|