wordpress-deploy 1.0.0.alpha2 → 1.0.0.rc1
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/.gitignore +7 -1
- data/Guardfile +1 -16
- data/README.md +56 -0
- data/lib/wordpress_deploy.rb +43 -9
- data/lib/wordpress_deploy/cli/helpers.rb +6 -3
- data/lib/wordpress_deploy/cli/utility.rb +56 -33
- data/lib/wordpress_deploy/config.rb +77 -0
- data/lib/wordpress_deploy/database/mysql.rb +281 -20
- data/lib/wordpress_deploy/environment.rb +85 -43
- data/lib/wordpress_deploy/environments.rb +89 -0
- data/lib/wordpress_deploy/logger.rb +3 -3
- data/lib/wordpress_deploy/{transfer_protocols → storage}/ftp.rb +52 -116
- data/lib/wordpress_deploy/storage/local.rb +12 -0
- data/lib/wordpress_deploy/version.rb +1 -1
- data/lib/wordpress_deploy/wordpress/salts.rb +68 -0
- data/spec/data/blue.rb +52 -0
- data/spec/data/development.rb +49 -0
- data/spec/data/green.rb +52 -0
- data/spec/data/production.rb +52 -0
- data/spec/data/red.rb +52 -0
- data/spec/data/wp-config.php +90 -0
- data/spec/spec_helper.rb +16 -5
- data/spec/wordpress_deploy/cli/utility_spec.rb +48 -0
- data/spec/{environment_spec.rb → wordpress_deploy/config_spec.rb} +9 -7
- data/spec/wordpress_deploy/database/mysql_spec.rb +147 -0
- data/spec/wordpress_deploy/environment_spec.rb +96 -0
- data/spec/wordpress_deploy/environments_spec.rb +65 -0
- data/spec/wordpress_deploy/storage/ftp_spec.rb +58 -0
- data/spec/wordpress_deploy/storage/local_spec.rb +0 -0
- data/spec/wordpress_deploy/wordpress/salts_spec.rb +70 -0
- data/{spec/data/wp-config-sample.php → templates/wp-config.erb} +17 -17
- data/wordpress_deploy.gemspec +7 -6
- metadata +64 -30
- data/Gemfile.lock +0 -83
- data/lib/wordpress_deploy/wordpress/configuration.rb +0 -196
- data/spec/data/ftp.yml +0 -4
- data/spec/data/wp-config.yml +0 -128
- data/spec/database/mysql_spec.rb +0 -93
- data/spec/transfer_protocols/ftp_spec.rb +0 -193
- data/spec/wordpress/configuration_spec.rb +0 -202
File without changes
|
@@ -0,0 +1,70 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe WordpressDeploy::Wordpress::Salts do
|
4
|
+
|
5
|
+
it { should respond_to :auth_key }
|
6
|
+
it { should respond_to :secure_auth_key }
|
7
|
+
it { should respond_to :logged_in_key }
|
8
|
+
it { should respond_to :nonce_key }
|
9
|
+
it { should respond_to :auth_salt }
|
10
|
+
it { should respond_to :secure_auth_salt }
|
11
|
+
it { should respond_to :logged_in_salt }
|
12
|
+
it { should respond_to :nonce_salt }
|
13
|
+
|
14
|
+
it "should have a static method that generates psuedo random salts" do
|
15
|
+
arr = 4.times.map { WordpressDeploy::Wordpress::Salts.salt }
|
16
|
+
arr.should have(4).strings
|
17
|
+
arr.each { |salt| salt.should be_salt}
|
18
|
+
end
|
19
|
+
|
20
|
+
context "should allow all the salts to be defined" do
|
21
|
+
subject do
|
22
|
+
WordpressDeploy::Wordpress::Salts.new do
|
23
|
+
auth_key '*oH{(q=`tIzdNJKUk$XfHNNjKd$W=f$S`CtD.,;x0R}$/A,}]!+q0>>QfB#.Bsw]'
|
24
|
+
secure_auth_key '{yg|7Q*j-?$%`b|Z!+5U,pvM,eA0+$/ruprp.mO[;|fExU:n0,-!at0+3UY@;h`X'
|
25
|
+
logged_in_key 'k]N 9I<-rZq#k Xg)IPhv$E*ktbD7Z_AtI){U;(P;0r#LJlYncEr%8v9tG`>BHU+'
|
26
|
+
nonce_key ' /w9->::-YB Xa#lf%TPH+cIf?]Ru4OfKGF2h8PHsa)2,n-~kRJ<[slUg<GZ Asx'
|
27
|
+
auth_salt 'VYwGGP,#|9P[5RCUTdv2c8)`^{dotU0fWrU`JE9qq^n=F4//e)fCs<HF6sd>~yjW'
|
28
|
+
secure_auth_salt 'ok}@vSs=n6%_%UCO|&[?Jc;,-,.#Q3}zR4ej%IoAL7RavTN/Xe,UrQ4)p}onRie0'
|
29
|
+
logged_in_salt 'Z!,C*:Q_I9A`[pJm-b0Z/(Gm2qvK8>0~| T&)lM+sxG.OdEmgHbAGF&(^>2.rDGW'
|
30
|
+
nonce_salt 'ay)${bFV=F1KH[`NZ+W+Zk?Hc:@}jN}Ec)+Zn[F1fyP,mwi|@tk/(1hdp[G2F%os'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
its(:auth_key) { should be_salt }
|
34
|
+
its(:auth_key) { should eq '*oH{(q=`tIzdNJKUk$XfHNNjKd$W=f$S`CtD.,;x0R}$/A,}]!+q0>>QfB#.Bsw]' }
|
35
|
+
|
36
|
+
its(:secure_auth_key) { should be_salt }
|
37
|
+
its(:secure_auth_key) { should eq '{yg|7Q*j-?$%`b|Z!+5U,pvM,eA0+$/ruprp.mO[;|fExU:n0,-!at0+3UY@;h`X' }
|
38
|
+
|
39
|
+
its(:logged_in_key) { should be_salt }
|
40
|
+
its(:logged_in_key) { should eq 'k]N 9I<-rZq#k Xg)IPhv$E*ktbD7Z_AtI){U;(P;0r#LJlYncEr%8v9tG`>BHU+' }
|
41
|
+
|
42
|
+
its(:nonce_key) { should be_salt }
|
43
|
+
its(:nonce_key) { should eq ' /w9->::-YB Xa#lf%TPH+cIf?]Ru4OfKGF2h8PHsa)2,n-~kRJ<[slUg<GZ Asx' }
|
44
|
+
|
45
|
+
its(:auth_salt) { should be_salt }
|
46
|
+
its(:auth_salt) { should eq 'VYwGGP,#|9P[5RCUTdv2c8)`^{dotU0fWrU`JE9qq^n=F4//e)fCs<HF6sd>~yjW' }
|
47
|
+
|
48
|
+
its(:secure_auth_salt) { should be_salt }
|
49
|
+
its(:secure_auth_salt) { should eq 'ok}@vSs=n6%_%UCO|&[?Jc;,-,.#Q3}zR4ej%IoAL7RavTN/Xe,UrQ4)p}onRie0' }
|
50
|
+
|
51
|
+
its(:logged_in_salt) { should be_salt }
|
52
|
+
its(:logged_in_salt) { should eq 'Z!,C*:Q_I9A`[pJm-b0Z/(Gm2qvK8>0~| T&)lM+sxG.OdEmgHbAGF&(^>2.rDGW' }
|
53
|
+
|
54
|
+
its(:nonce_salt) { should be_salt }
|
55
|
+
its(:nonce_salt) { should eq 'ay)${bFV=F1KH[`NZ+W+Zk?Hc:@}jN}Ec)+Zn[F1fyP,mwi|@tk/(1hdp[G2F%os' }
|
56
|
+
end
|
57
|
+
|
58
|
+
context "should define salts even if none are defined" do
|
59
|
+
subject { WordpressDeploy::Wordpress::Salts.new }
|
60
|
+
its(:auth_key) { should be_salt }
|
61
|
+
its(:secure_auth_key) { should be_salt }
|
62
|
+
its(:logged_in_key) { should be_salt }
|
63
|
+
its(:nonce_key) { should be_salt }
|
64
|
+
its(:auth_salt) { should be_salt }
|
65
|
+
its(:secure_auth_salt) { should be_salt }
|
66
|
+
its(:logged_in_salt) { should be_salt }
|
67
|
+
its(:nonce_salt) { should be_salt }
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
@@ -16,22 +16,22 @@
|
|
16
16
|
|
17
17
|
// ** MySQL settings - You can get this info from your web host ** //
|
18
18
|
/** The name of the database for WordPress */
|
19
|
-
define('DB_NAME', '
|
19
|
+
define('DB_NAME', '<%= database.name %>');
|
20
20
|
|
21
21
|
/** MySQL database username */
|
22
|
-
define('DB_USER', '
|
22
|
+
define('DB_USER', '<%= database.user %>');
|
23
23
|
|
24
24
|
/** MySQL database password */
|
25
|
-
define('DB_PASSWORD', '
|
25
|
+
define('DB_PASSWORD', '<%= database.password %>');
|
26
26
|
|
27
27
|
/** MySQL hostname */
|
28
|
-
define('DB_HOST', '
|
28
|
+
define('DB_HOST', '<%= database.wp_host %>');
|
29
29
|
|
30
30
|
/** Database Charset to use in creating database tables. */
|
31
|
-
define('DB_CHARSET', '
|
31
|
+
define('DB_CHARSET', '<%= database.charset %>');
|
32
32
|
|
33
33
|
/** The Database Collate type. Don't change this if in doubt. */
|
34
|
-
define('DB_COLLATE', '');
|
34
|
+
define('DB_COLLATE', '<%= database.collate %>');
|
35
35
|
|
36
36
|
/**#@+
|
37
37
|
* Authentication Unique Keys and Salts.
|
@@ -42,14 +42,14 @@ define('DB_COLLATE', '');
|
|
42
42
|
*
|
43
43
|
* @since 2.6.0
|
44
44
|
*/
|
45
|
-
define('AUTH_KEY', '
|
46
|
-
define('SECURE_AUTH_KEY', '
|
47
|
-
define('LOGGED_IN_KEY', '
|
48
|
-
define('NONCE_KEY', '
|
49
|
-
define('AUTH_SALT', '
|
50
|
-
define('SECURE_AUTH_SALT', '
|
51
|
-
define('LOGGED_IN_SALT', '
|
52
|
-
define('NONCE_SALT', '
|
45
|
+
define('AUTH_KEY', '<%= salts.auth_key %>');
|
46
|
+
define('SECURE_AUTH_KEY', '<%= salts.secure_auth_key %>');
|
47
|
+
define('LOGGED_IN_KEY', '<%= salts.logged_in_key %>');
|
48
|
+
define('NONCE_KEY', '<%= salts.nonce_key %>');
|
49
|
+
define('AUTH_SALT', '<%= salts.auth_salt %>');
|
50
|
+
define('SECURE_AUTH_SALT', '<%= salts.secure_auth_salt %>');
|
51
|
+
define('LOGGED_IN_SALT', '<%= salts.logged_in_salt %>');
|
52
|
+
define('NONCE_SALT', '<%= salts.nonce_salt %>');
|
53
53
|
|
54
54
|
/**#@-*/
|
55
55
|
|
@@ -59,7 +59,7 @@ define('NONCE_SALT', 'put your unique phrase here');
|
|
59
59
|
* You can have multiple installations in one database if you give each a unique
|
60
60
|
* prefix. Only numbers, letters, and underscores please!
|
61
61
|
*/
|
62
|
-
$table_prefix = '
|
62
|
+
$table_prefix = '<%= database.table_prefix %>';
|
63
63
|
|
64
64
|
/**
|
65
65
|
* WordPress Localized Language, defaults to English.
|
@@ -69,7 +69,7 @@ $table_prefix = 'wp_';
|
|
69
69
|
* de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
|
70
70
|
* language support.
|
71
71
|
*/
|
72
|
-
define('WPLANG', '');
|
72
|
+
define('WPLANG', '<%= wplang %>');
|
73
73
|
|
74
74
|
/**
|
75
75
|
* For developers: WordPress debugging mode.
|
@@ -78,7 +78,7 @@ define('WPLANG', '');
|
|
78
78
|
* It is strongly recommended that plugin and theme developers use WP_DEBUG
|
79
79
|
* in their development environments.
|
80
80
|
*/
|
81
|
-
define('WP_DEBUG',
|
81
|
+
define('WP_DEBUG', <%= wpdebug %>);
|
82
82
|
|
83
83
|
/* That's all, stop editing! Happy blogging. */
|
84
84
|
|
data/wordpress_deploy.gemspec
CHANGED
@@ -4,7 +4,7 @@ require File.expand_path('../lib/wordpress_deploy/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Ryan Lovelett"]
|
6
6
|
gem.email = ["ryan@lovelett.me"]
|
7
|
-
gem.description = %q{
|
7
|
+
gem.description = %q{Wordpress Deploy provides an elegant DSL in Ruby for modeling and executing your deployments.}
|
8
8
|
gem.summary = %q{Wordpress Deploy is a RubyGem, written for Linux and Mac OSX, that allows you to easily perform Wordpress deployment operations. It provides you with an elegant DSL in Ruby for modeling your deployments.}
|
9
9
|
gem.homepage = %q{https://github.com/RLovelett/wordpress-deploy}
|
10
10
|
|
@@ -17,11 +17,12 @@ Gem::Specification.new do |gem|
|
|
17
17
|
|
18
18
|
##
|
19
19
|
# Gem dependencies
|
20
|
-
gem.add_dependency 'thor',
|
21
|
-
gem.add_dependency 'colorize',
|
22
|
-
gem.add_dependency '
|
23
|
-
gem.add_dependency '
|
24
|
-
gem.add_dependency '
|
20
|
+
gem.add_dependency 'thor', ['~> 0.15.4']
|
21
|
+
gem.add_dependency 'colorize', ['~> 0.5.8']
|
22
|
+
gem.add_dependency 'titleize', ['~> 1.2.1']
|
23
|
+
gem.add_dependency 'actionpack', ['~> 3.2.6']
|
24
|
+
gem.add_dependency 'php-serialize_ryan', ['~> 1.1.0']
|
25
|
+
gem.add_dependency 'mysql2', ['~> 0.3.11']
|
25
26
|
|
26
27
|
gem.add_development_dependency 'rake', ['~> 0.9.2.2']
|
27
28
|
gem.add_development_dependency 'rspec', ['~> 2.11.0']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wordpress-deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc1
|
5
5
|
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -44,13 +44,13 @@ dependencies:
|
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: 0.5.8
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
|
-
name:
|
47
|
+
name: titleize
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
49
49
|
none: false
|
50
50
|
requirements:
|
51
51
|
- - ~>
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
53
|
+
version: 1.2.1
|
54
54
|
type: :runtime
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -58,15 +58,15 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 1.2.1
|
62
62
|
- !ruby/object:Gem::Dependency
|
63
|
-
name:
|
63
|
+
name: actionpack
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
65
65
|
none: false
|
66
66
|
requirements:
|
67
67
|
- - ~>
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
69
|
+
version: 3.2.6
|
70
70
|
type: :runtime
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -74,15 +74,15 @@ dependencies:
|
|
74
74
|
requirements:
|
75
75
|
- - ~>
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
77
|
+
version: 3.2.6
|
78
78
|
- !ruby/object:Gem::Dependency
|
79
|
-
name:
|
79
|
+
name: php-serialize_ryan
|
80
80
|
requirement: !ruby/object:Gem::Requirement
|
81
81
|
none: false
|
82
82
|
requirements:
|
83
83
|
- - ~>
|
84
84
|
- !ruby/object:Gem::Version
|
85
|
-
version:
|
85
|
+
version: 1.1.0
|
86
86
|
type: :runtime
|
87
87
|
prerelease: false
|
88
88
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -90,7 +90,23 @@ dependencies:
|
|
90
90
|
requirements:
|
91
91
|
- - ~>
|
92
92
|
- !ruby/object:Gem::Version
|
93
|
-
version:
|
93
|
+
version: 1.1.0
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: mysql2
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ~>
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 0.3.11
|
102
|
+
type: :runtime
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ~>
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 0.3.11
|
94
110
|
- !ruby/object:Gem::Dependency
|
95
111
|
name: rake
|
96
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -139,7 +155,8 @@ dependencies:
|
|
139
155
|
- - ~>
|
140
156
|
- !ruby/object:Gem::Version
|
141
157
|
version: 1.2.1
|
142
|
-
description:
|
158
|
+
description: Wordpress Deploy provides an elegant DSL in Ruby for modeling and executing
|
159
|
+
your deployments.
|
143
160
|
email:
|
144
161
|
- ryan@lovelett.me
|
145
162
|
executables:
|
@@ -152,7 +169,6 @@ files:
|
|
152
169
|
- .rvmrc
|
153
170
|
- .travis.yml
|
154
171
|
- Gemfile
|
155
|
-
- Gemfile.lock
|
156
172
|
- Guardfile
|
157
173
|
- LICENSE.md
|
158
174
|
- README.md
|
@@ -161,21 +177,32 @@ files:
|
|
161
177
|
- lib/wordpress_deploy.rb
|
162
178
|
- lib/wordpress_deploy/cli/helpers.rb
|
163
179
|
- lib/wordpress_deploy/cli/utility.rb
|
180
|
+
- lib/wordpress_deploy/config.rb
|
164
181
|
- lib/wordpress_deploy/database/mysql.rb
|
165
182
|
- lib/wordpress_deploy/environment.rb
|
183
|
+
- lib/wordpress_deploy/environments.rb
|
166
184
|
- lib/wordpress_deploy/errors.rb
|
167
185
|
- lib/wordpress_deploy/logger.rb
|
168
|
-
- lib/wordpress_deploy/
|
186
|
+
- lib/wordpress_deploy/storage/ftp.rb
|
187
|
+
- lib/wordpress_deploy/storage/local.rb
|
169
188
|
- lib/wordpress_deploy/version.rb
|
170
|
-
- lib/wordpress_deploy/wordpress/
|
171
|
-
- spec/data/
|
172
|
-
- spec/data/
|
173
|
-
- spec/data/
|
174
|
-
- spec/
|
175
|
-
- spec/
|
189
|
+
- lib/wordpress_deploy/wordpress/salts.rb
|
190
|
+
- spec/data/blue.rb
|
191
|
+
- spec/data/development.rb
|
192
|
+
- spec/data/green.rb
|
193
|
+
- spec/data/production.rb
|
194
|
+
- spec/data/red.rb
|
195
|
+
- spec/data/wp-config.php
|
176
196
|
- spec/spec_helper.rb
|
177
|
-
- spec/
|
178
|
-
- spec/
|
197
|
+
- spec/wordpress_deploy/cli/utility_spec.rb
|
198
|
+
- spec/wordpress_deploy/config_spec.rb
|
199
|
+
- spec/wordpress_deploy/database/mysql_spec.rb
|
200
|
+
- spec/wordpress_deploy/environment_spec.rb
|
201
|
+
- spec/wordpress_deploy/environments_spec.rb
|
202
|
+
- spec/wordpress_deploy/storage/ftp_spec.rb
|
203
|
+
- spec/wordpress_deploy/storage/local_spec.rb
|
204
|
+
- spec/wordpress_deploy/wordpress/salts_spec.rb
|
205
|
+
- templates/wp-config.erb
|
179
206
|
- wordpress_deploy.gemspec
|
180
207
|
homepage: https://github.com/RLovelett/wordpress-deploy
|
181
208
|
licenses: []
|
@@ -191,7 +218,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
191
218
|
version: '0'
|
192
219
|
segments:
|
193
220
|
- 0
|
194
|
-
hash:
|
221
|
+
hash: 860616845357121422
|
195
222
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
196
223
|
none: false
|
197
224
|
requirements:
|
@@ -207,11 +234,18 @@ summary: Wordpress Deploy is a RubyGem, written for Linux and Mac OSX, that allo
|
|
207
234
|
you to easily perform Wordpress deployment operations. It provides you with an elegant
|
208
235
|
DSL in Ruby for modeling your deployments.
|
209
236
|
test_files:
|
210
|
-
- spec/data/
|
211
|
-
- spec/data/
|
212
|
-
- spec/data/
|
213
|
-
- spec/
|
214
|
-
- spec/
|
237
|
+
- spec/data/blue.rb
|
238
|
+
- spec/data/development.rb
|
239
|
+
- spec/data/green.rb
|
240
|
+
- spec/data/production.rb
|
241
|
+
- spec/data/red.rb
|
242
|
+
- spec/data/wp-config.php
|
215
243
|
- spec/spec_helper.rb
|
216
|
-
- spec/
|
217
|
-
- spec/
|
244
|
+
- spec/wordpress_deploy/cli/utility_spec.rb
|
245
|
+
- spec/wordpress_deploy/config_spec.rb
|
246
|
+
- spec/wordpress_deploy/database/mysql_spec.rb
|
247
|
+
- spec/wordpress_deploy/environment_spec.rb
|
248
|
+
- spec/wordpress_deploy/environments_spec.rb
|
249
|
+
- spec/wordpress_deploy/storage/ftp_spec.rb
|
250
|
+
- spec/wordpress_deploy/storage/local_spec.rb
|
251
|
+
- spec/wordpress_deploy/wordpress/salts_spec.rb
|
data/Gemfile.lock
DELETED
@@ -1,83 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
wordpress-deploy (1.0.0.alpha2)
|
5
|
-
actionpack (~> 3.2.6)
|
6
|
-
colorize (~> 0.5.8)
|
7
|
-
os (~> 0.9.4)
|
8
|
-
thor (~> 0.15.4)
|
9
|
-
titleize (~> 1.2.1)
|
10
|
-
|
11
|
-
GEM
|
12
|
-
remote: https://rubygems.org/
|
13
|
-
specs:
|
14
|
-
actionpack (3.2.7)
|
15
|
-
activemodel (= 3.2.7)
|
16
|
-
activesupport (= 3.2.7)
|
17
|
-
builder (~> 3.0.0)
|
18
|
-
erubis (~> 2.7.0)
|
19
|
-
journey (~> 1.0.4)
|
20
|
-
rack (~> 1.4.0)
|
21
|
-
rack-cache (~> 1.2)
|
22
|
-
rack-test (~> 0.6.1)
|
23
|
-
sprockets (~> 2.1.3)
|
24
|
-
activemodel (3.2.7)
|
25
|
-
activesupport (= 3.2.7)
|
26
|
-
builder (~> 3.0.0)
|
27
|
-
activesupport (3.2.7)
|
28
|
-
i18n (~> 0.6)
|
29
|
-
multi_json (~> 1.0)
|
30
|
-
builder (3.0.0)
|
31
|
-
colorize (0.5.8)
|
32
|
-
diff-lcs (1.1.3)
|
33
|
-
erubis (2.7.0)
|
34
|
-
ffi (1.1.4)
|
35
|
-
guard (1.3.0)
|
36
|
-
listen (>= 0.4.2)
|
37
|
-
thor (>= 0.14.6)
|
38
|
-
guard-rspec (1.2.1)
|
39
|
-
guard (>= 1.1)
|
40
|
-
hike (1.2.1)
|
41
|
-
i18n (0.6.0)
|
42
|
-
journey (1.0.4)
|
43
|
-
listen (0.4.7)
|
44
|
-
rb-fchange (~> 0.0.5)
|
45
|
-
rb-fsevent (~> 0.9.1)
|
46
|
-
rb-inotify (~> 0.8.8)
|
47
|
-
multi_json (1.3.6)
|
48
|
-
os (0.9.6)
|
49
|
-
rack (1.4.1)
|
50
|
-
rack-cache (1.2)
|
51
|
-
rack (>= 0.4)
|
52
|
-
rack-test (0.6.1)
|
53
|
-
rack (>= 1.0)
|
54
|
-
rake (0.9.2.2)
|
55
|
-
rb-fchange (0.0.5)
|
56
|
-
ffi
|
57
|
-
rb-fsevent (0.9.1)
|
58
|
-
rb-inotify (0.8.8)
|
59
|
-
ffi (>= 0.5.0)
|
60
|
-
rspec (2.11.0)
|
61
|
-
rspec-core (~> 2.11.0)
|
62
|
-
rspec-expectations (~> 2.11.0)
|
63
|
-
rspec-mocks (~> 2.11.0)
|
64
|
-
rspec-core (2.11.1)
|
65
|
-
rspec-expectations (2.11.2)
|
66
|
-
diff-lcs (~> 1.1.3)
|
67
|
-
rspec-mocks (2.11.1)
|
68
|
-
sprockets (2.1.3)
|
69
|
-
hike (~> 1.2)
|
70
|
-
rack (~> 1.0)
|
71
|
-
tilt (~> 1.1, != 1.3.0)
|
72
|
-
thor (0.15.4)
|
73
|
-
tilt (1.3.3)
|
74
|
-
titleize (1.2.1)
|
75
|
-
|
76
|
-
PLATFORMS
|
77
|
-
ruby
|
78
|
-
|
79
|
-
DEPENDENCIES
|
80
|
-
guard-rspec (~> 1.2.1)
|
81
|
-
rake (~> 0.9.2.2)
|
82
|
-
rspec (~> 2.11.0)
|
83
|
-
wordpress-deploy!
|