chicken_soup 0.8.6 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,6 +1,6 @@
1
1
  *.gem
2
+ tags
2
3
  .bundle
3
4
  .yardoc
4
- Gemfile.lock
5
5
  pkg/*
6
6
  todo.txt
@@ -0,0 +1 @@
1
+ 1.9.3
@@ -0,0 +1,64 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ chicken_soup (0.9.0)
5
+ activesupport (~> 4.0)
6
+ capistrano (~> 2.9.0)
7
+ mail (~> 2.2)
8
+
9
+ GEM
10
+ remote: http://rubygems.org/
11
+ specs:
12
+ activesupport (4.0.1)
13
+ i18n (~> 0.6, >= 0.6.4)
14
+ minitest (~> 4.2)
15
+ multi_json (~> 1.3)
16
+ thread_safe (~> 0.1)
17
+ tzinfo (~> 0.3.37)
18
+ atomic (1.1.14)
19
+ capistrano (2.9.0)
20
+ highline
21
+ net-scp (>= 1.0.0)
22
+ net-sftp (>= 2.0.0)
23
+ net-ssh (>= 2.0.14)
24
+ net-ssh-gateway (>= 1.1.0)
25
+ diff-lcs (1.1.2)
26
+ highline (1.6.20)
27
+ i18n (0.6.5)
28
+ mail (2.5.4)
29
+ mime-types (~> 1.16)
30
+ treetop (~> 1.4.8)
31
+ mime-types (1.25.1)
32
+ minitest (4.7.5)
33
+ multi_json (1.8.2)
34
+ net-scp (1.1.2)
35
+ net-ssh (>= 2.6.5)
36
+ net-sftp (2.1.2)
37
+ net-ssh (>= 2.6.5)
38
+ net-ssh (2.7.0)
39
+ net-ssh-gateway (1.2.0)
40
+ net-ssh (>= 2.6.5)
41
+ polyglot (0.3.3)
42
+ rspec (2.6.0)
43
+ rspec-core (~> 2.6.0)
44
+ rspec-expectations (~> 2.6.0)
45
+ rspec-mocks (~> 2.6.0)
46
+ rspec-core (2.6.4)
47
+ rspec-expectations (2.6.0)
48
+ diff-lcs (~> 1.1.2)
49
+ rspec-mocks (2.6.0)
50
+ thread_safe (0.1.3)
51
+ atomic
52
+ treetop (1.4.15)
53
+ polyglot
54
+ polyglot (>= 0.3.1)
55
+ tzinfo (0.3.38)
56
+ yard (0.7.1)
57
+
58
+ PLATFORMS
59
+ ruby
60
+
61
+ DEPENDENCIES
62
+ chicken_soup!
63
+ rspec (~> 2.6.0)
64
+ yard (~> 0.7.1)
@@ -30,9 +30,8 @@ Gem::Specification.new do |s|
30
30
 
31
31
  s.add_dependency('capistrano', '~> 2.9.0')
32
32
  s.add_dependency('mail', '~> 2.2')
33
- s.add_dependency('activesupport', '~> 3.0')
33
+ s.add_dependency('activesupport', '~> 4.0')
34
34
 
35
- s.add_development_dependency('bundler', '~> 1.0.10')
36
35
  s.add_development_dependency('rspec', '~> 2.6.0')
37
36
  s.add_development_dependency('yard', '~> 0.7.1')
38
37
  end
@@ -11,9 +11,6 @@ Capistrano::Configuration.instance(:must_exist).load do
11
11
  task :heroku do
12
12
  required_variables = [
13
13
  :deploy_site_name,
14
- :user,
15
- :heroku_credentials_path,
16
- :heroku_credentials_file
17
14
  ]
18
15
 
19
16
  verify_variables(required_variables)
@@ -6,10 +6,6 @@ Capistrano::Configuration.instance(:must_exist).load do
6
6
  namespace :defaults do
7
7
  desc "[internal] Sets intelligent defaults for Heroku deployments"
8
8
  task :heroku do
9
- _cset :heroku_credentials_path, "#{ENV["HOME"]}/.heroku"
10
- _cset :heroku_credentials_file, "#{heroku_credentials_path}/credentials"
11
-
12
- _cset(:password) {Capistrano::CLI.password_prompt("Encrypted Heroku Password: ")}
13
9
  end
14
10
  end
15
11
  end
@@ -3,8 +3,6 @@
3
3
  ######################################################################
4
4
  Capistrano::Configuration.instance(:must_exist).load do
5
5
  heroku_tasks = [
6
- "heroku:credentials",
7
- "heroku:credentials:default",
8
6
  "deploy",
9
7
  "deploy:default",
10
8
  "deploy:initial",
@@ -17,230 +15,217 @@ Capistrano::Configuration.instance(:must_exist).load do
17
15
  "website:install",
18
16
  "website:remove",
19
17
  "db:drop",
20
- "db:backup",
18
+ "heroku.db:backup",
21
19
  "db:reset_and_seed",
22
20
  "db:seed",
23
21
  "shell",
24
22
  "invoke"
25
23
  ]
26
24
 
27
- on :start, "heroku:credentials", :only => heroku_tasks
28
- on :start, "heroku:raise_error", :except => heroku_tasks
25
+ _cset :skip_backup_before_migration, false
26
+ _cset :db_backup_file_extension, 'dump'
27
+
28
+ before "heroku:db:migrate", "heroku:db:backup" unless skip_backup_before_migration
29
+
30
+ # on :start, "heroku:raise_error", :except => heroku_tasks
29
31
 
30
32
  namespace :heroku do
31
- namespace :domain do
32
- desc <<-DESC
33
- Installs a new domain for the application on the Heroku server.
34
- DESC
35
- task :install do
36
- `heroku domains:add #{deploy_site_name}`
33
+ namespace :deploy do
34
+ task :base do
35
+ heroku.configuration.push
36
+ heroku.deploy.update
37
+ heroku.db.migrate
37
38
  end
38
39
 
39
40
  desc <<-DESC
40
- Removes the domain for the application from the Heroku server.
41
+ The standard deployment task.
42
+
43
+ It will check out a new release of the code, run any pending migrations and
44
+ restart the application.
41
45
  DESC
42
- task :remove do
43
- `heroku domains:remove #{deploy_site_name}`
46
+ task :default do
47
+ heroku.deploy.base
48
+ heroku.deploy.restart
44
49
  end
45
50
 
46
- namespace :addon do
47
- desc <<-DESC
48
- Add the Custom Domain Addon to the server.
49
- DESC
50
- task :install do
51
- `heroku addons:add custom_domains:basic`
52
- end
53
-
54
- desc <<-DESC
55
- Removes the Custom Domain Addon from the server.
56
- DESC
57
- task :remove do
58
- `heroku addons:remove custom_domains:basic`
59
- end
51
+ task :update do
52
+ `git push heroku-#{rails_env} #{branch}:master`
60
53
  end
61
- end
62
54
 
63
- namespace :credentials do
64
55
  desc <<-DESC
65
- Selects the correct Heroku credentials for use given the current user.
56
+ Restarts the application.
57
+ DESC
58
+ task :restart do
59
+ `heroku restart --app #{deploy_site_name}`
60
+ end
66
61
 
67
- If a credentials file already exists, it is backed up.
62
+ desc <<-DESC
63
+ Rolls back to a previous version and restarts.
68
64
  DESC
69
- task :default do
70
- if File.exist? heroku_credentials_file
71
- heroku.credentials.backup
65
+ namespace :rollback do
66
+ task :default do
67
+ `heroku rollback --app #{deploy_site_name}`
68
+ deploy.restart
69
+ end
70
+ end
71
+
72
+ namespace :web do
73
+ desc "Removes the maintenance page to resume normal site operation."
74
+ task :enable do
75
+ `heroku maintenance:off --app #{deploy_site_name}`
72
76
  end
73
77
 
74
- if File.exist? "#{heroku_credentials_path}/#{user}_credentials"
75
- heroku.credentials.switch
76
- else
77
- heroku.credentials.create
78
+ desc "Diplays the maintenance page."
79
+ task :disable do
80
+ `heroku maintenance:on --app #{deploy_site_name}`
78
81
  end
79
82
  end
80
83
 
81
- desc <<-DESC
82
- [internal] Backs up the current credentials file.
83
- DESC
84
- task :backup do
85
- account = File.readlines(heroku_credentials_file)[0].chomp
86
- File.rename(heroku_credentials_file, "#{heroku_credentials_path}/#{account}_credentials")
84
+ desc "Prepare the server for deployment."
85
+ task :initial do
86
+ heroku.deploy.default
87
87
  end
88
+ end
88
89
 
90
+ namespace :db do
89
91
  desc <<-DESC
90
- [internal] Creates a Heroku credentials file.
92
+ Runs the migrate rake task.
91
93
  DESC
92
- task :create do
93
- `if [ ! -d #{heroku_credentials_path} ]; then mkdir -p #{heroku_credentials_path}; fi`
94
- `echo #{user} > #{heroku_credentials_file}`
95
- `echo #{password} >> #{heroku_credentials_file}`
94
+ task :migrate do
95
+ `heroku run rake db:migrate --app #{deploy_site_name}`
96
96
  end
97
97
 
98
- desc <<-DESC
99
- [internal] Switches the credentials file to either the current use or the
100
- name specified by the `HEROKU_ACCOUNT` environment variable.
101
- DESC
102
- task :switch do
103
- account_to_switch_to = ENV['HEROKU_ACCOUNT'] || user
104
- File.rename("#{heroku_credentials_path}/#{account_to_switch_to}_credentials", heroku_credentials_file)
98
+ desc "Removes the DB from the Server. Also removes the user."
99
+ task :drop do
100
+ `heroku pg:reset --app #{deploy_site_name}`
105
101
  end
106
- end
107
102
 
108
- desc <<-DESC
109
- [internal] Raises an error if someone tries to run a task other than those
110
- that are valid for a Heroku deployment.
111
- DESC
112
- task :raise_error do
113
- abort "Deploying the #{rails_env} environment to Heroku. This command is invalid."
114
- end
115
- end
103
+ namespace :pull do
104
+ desc <<-DESC
105
+ Creates an easy way to debug remote data locally.
106
+
107
+ * Running this task will create a dump file of all the data in the specified
108
+ environment.
109
+ * Copy the dump file to the local machine
110
+ * Drop and recreate all local databases
111
+ * Import the dump file
112
+ * Bring the local DB up-to-date with any local migrations
113
+ * Prepare the test environment
114
+ DESC
115
+ task :default do
116
+ heroku.db.backup.default
117
+ heroku.db.pull.latest
118
+ end
116
119
 
117
- namespace :deploy do
118
- desc <<-DESC
119
- The standard deployment task.
120
+ desc <<-DESC
121
+ Just like `db:pull` but doesn't create a new backup first.
122
+ DESC
123
+ task :latest do
124
+ %x{curl -o ./tmp/`date --iso-8601=seconds`.#{db_backup_file_extension} `heroku pgbackups:url --app #{deploy_site_name}`}
120
125
 
121
- It will check out a new release of the code, run any pending migrations and
122
- restart the application.
123
- DESC
124
- task :default do
125
- `git push heroku #{branch}`
126
- deploy.migrate
127
- deploy.restart
128
- end
126
+ latest_local_db_backup = `ls -1t #{rails_root}/tmp/*.#{db_backup_file_extension} | head -n 1`.chomp
129
127
 
130
- desc <<-DESC
131
- Restarts the application.
132
- DESC
133
- task :restart do
134
- `heroku restart`
135
- end
128
+ puts 'Running `rake db:drop:all db:create:all` locally'
129
+ `#{local_rake} db:drop:all db:create:all`
130
+ puts "Running DB restore locally with the DB backup file data"
131
+ `pg_restore --verbose --clean --no-acl --no-owner -h localhost -d #{application}_development #{latest_local_db_backup}`
132
+ puts "Running `rake db:migrate db:test:prepare` locally"
133
+ `#{local_rake} db:migrate db:test:prepare`
136
134
 
137
- desc <<-DESC
138
- Runs the migrate rake task.
139
- DESC
140
- task :migrate do
141
- `heroku rake db:migrate`
142
- end
143
-
144
- desc <<-DESC
145
- Rolls back to a previous version and restarts.
146
- DESC
147
- namespace :rollback do
148
- task :default do
149
- `heroku rollback`
150
- deploy.restart
135
+ heroku.db.scrub
136
+ end
151
137
  end
152
- end
153
138
 
154
- namespace :web do
155
- desc "Removes the maintenance page to resume normal site operation."
156
- task :enable do
157
- `heroku maintenance:off`
158
- end
139
+ namespace :backup do
140
+ desc "Backup the database"
141
+ task :default do
142
+ `heroku pgbackups:capture --app #{deploy_site_name} --expire`
143
+ end
159
144
 
160
- desc "Diplays the maintenance page."
161
- task :disable do
162
- `heroku maintenance:on`
163
- end
164
- end
145
+ # desc "List database backups"
146
+ # task :list do
147
+ # `heroku pgbackups --app #{deploy_site_name}`
148
+ # end
165
149
 
166
- desc "Prepare the server for deployment."
167
- task :initial do
168
- website.install
150
+ # desc "List database backups"
151
+ # task :get do
152
+ # `wget \`heroku pgbackups:url $1 --app #{deploy_site_name}\` ./tmp/db_backups `
153
+ # end
169
154
 
170
- heroku.domain.addon.install
171
- db.backup.addon.install
155
+ # desc "List database backups"
156
+ # task :remove do
157
+ # `heroku pgbackups:destroy $1 --app #{deploy_site_name}`
158
+ # end
159
+ end
172
160
 
173
- heroku.domain.install
161
+ desc <<-DESC
162
+ Calls the rake task `db:reset_and_seed` on the server for the given environment.
174
163
 
175
- `heroku config:add BUNDLE_WITHOUT="development:test"`
176
- deploy.default
177
- end
178
- end
164
+ Typically, this task will drop the DB, recreate the DB, load the development
165
+ schema and then populate the DB by calling the `db:seed` task.
179
166
 
180
- namespace :website do
181
- desc "Installs the application on Heroku"
182
- task :install do
183
- `heroku create #{application}`
184
- end
167
+ Warning: This task cannot be called in production mode. If you truely wish
168
+ to run this in production, you'll need to log into the server and
169
+ run the rake task manually or use Capistrano's `console` task.
170
+ DESC
171
+ desc "Reset database and seed fresh"
172
+ task :reset_and_seed do
173
+ abort "I'm sorry Dave, but I can't let you do that. I have full control over production." if rails_env == 'production'
174
+ heroku.db.backup
175
+ `heroku pg:reset --app #{deploy_site_name}`
176
+ heroku.db.seed
177
+ end
185
178
 
186
- desc "Completely removes application from Heroku"
187
- task :remove do
188
- `heroku destroy --confirm #{application}`
189
- end
190
- end
179
+ desc <<-DESC
180
+ Calls the rake task `db:seed` on the server for the given environment.
191
181
 
192
- namespace :db do
193
- desc "Removes the DB from the Server. Also removes the user."
194
- task :drop do
195
- `heroku pg:reset`
196
- end
182
+ Typically, this task will populate the DB with valid data which is necessary
183
+ for the initial production deployment. An example may be that the `STATES`
184
+ table gets populated with all the information about the States.
197
185
 
198
- namespace :backup do
199
- desc "Backup the database"
200
- task :default do
201
- `heroku pgbackups:capture`
186
+ Warning: This task cannot be called in production mode. If you truely wish
187
+ to run this in production, you'll need to log into the server and
188
+ run the rake task manually or use Capistrano's `console` task.
189
+ DESC
190
+ task :seed do
191
+ abort "I'm sorry Dave, but I can't let you do that. I have full control over production." if rails_env == 'production'
192
+ heroku.db.backup
193
+ `heroku run rake db:seed --app #{deploy_site_name}`
202
194
  end
203
195
 
204
- namespace :addon do
205
- desc <<-DESC
206
- Add the Postgres Backups Addon to the server.
207
- DESC
208
- task :install do
209
- `heroku addons:add pgbackups:basic`
210
- end
196
+ desc <<-DESC
197
+ Calls the rake task `db:scrub` locally.
211
198
 
212
- desc <<-DESC
213
- Removes the Postgres Backups Addon from the server.
214
- DESC
215
- task :remove do
216
- `heroku addons:remove pgbackups:basic`
217
- end
199
+ Usually, this will be run in conjunction with `db:pull` but may also be run
200
+ in a standalone manner.
201
+ DESC
202
+ task :scrub do
203
+ puts 'Running `rake db:scrub` locally'
204
+ `#{local_rake} db:scrub`
218
205
  end
219
206
  end
220
207
 
221
- desc "Reset database and seed fresh"
222
- task :reset_and_seed do
223
- abort "I'm sorry Dave, but I can't let you do that. I have full control over production." if rails_env == 'production'
224
- db.backup
225
- `heroku pg:reset`
226
- `heroku rake db:seed`
227
- end
208
+ namespace :configuration do
209
+ task :push do
210
+ require 'figaro'
211
+
212
+ Figaro.instance_variable_set(:@path, "#{rails_root}/config/application.yml")
228
213
 
229
- desc "Seed database"
230
- task :seed do
231
- abort "I'm sorry Dave, but I can't let you do that. I have full control over production." if rails_env == 'production'
232
- db.backup
233
- `heroku rake db:seed`
214
+ Figaro::Tasks::Heroku.new(deploy_site_name).invoke
215
+ end
234
216
  end
235
- end
236
217
 
237
- desc "Begin an interactive Heroku session."
238
- task :shell do
239
- `heroku shell`
240
- end
218
+ desc "Invoke a single command on the Heroku server."
219
+ task :run do
220
+ `heroku run #{ENV['COMMAND']} --app #{deploy_site_name}`
221
+ end
241
222
 
242
- desc "Invoke a single command on the Heroku server."
243
- task :invoke do
244
- `heroku invoke #{ENV['COMMAND']}`
223
+ desc <<-DESC
224
+ [internal] Raises an error if someone tries to run a task other than those
225
+ that are valid for a Heroku deployment.
226
+ DESC
227
+ task :raise_error do
228
+ abort "Deploying the #{rails_env} environment to Heroku. This command is invalid."
229
+ end
245
230
  end
246
231
  end
@@ -4,7 +4,34 @@
4
4
  Capistrano::Configuration.instance(:must_exist).load do
5
5
  before "deploy:shared_files:symlink", "deploy:shared_files:setup"
6
6
 
7
- namespace :deploy do
7
+ namespace :unix do
8
+ namespace :deploy do
9
+ task :base do
10
+ deploy.update
11
+ unix.deploy.shared_files.symlink
12
+ gems.install
13
+ deploy.cleanup
14
+ end
15
+
16
+ task :subzero do
17
+ ruby.update
18
+ deploy.base
19
+ end
20
+
21
+ task :initial do
22
+ deploy.setup
23
+ db.create
24
+ website.install
25
+ deploy.cold
26
+ deploy.check
27
+ end
28
+
29
+ task :default do
30
+ deploy.base
31
+ deploy.restart
32
+ end
33
+ end
34
+
8
35
  namespace :shared_files do
9
36
  desc <<-DESC
10
37
  Creates the directory where the `symlink` task will look for its configuration files.
@@ -3,18 +3,6 @@
3
3
  ######################################################################
4
4
  Capistrano::Configuration.instance(:must_exist).load do
5
5
  namespace :deploy do
6
- desc <<-DESC
7
- [internal] The list of tasks used by `deploy`, `deploy:cold`, `deploy:subzero` and `deploy:initial`
8
- DESC
9
- task :base do
10
- transaction do
11
- deploy.update
12
- deploy.shared_files.symlink
13
- gems.install
14
- deploy.cleanup
15
- end
16
- end
17
-
18
6
  desc <<-DESC
19
7
  Used when you would like to be more forceful with your deployment.
20
8
 
@@ -23,7 +11,7 @@ Capistrano::Configuration.instance(:must_exist).load do
23
11
  DESC
24
12
  task :cold do
25
13
  transaction do
26
- deploy.base
14
+ send(deployment_type).deploy.base
27
15
  end
28
16
  end
29
17
 
@@ -36,8 +24,7 @@ Capistrano::Configuration.instance(:must_exist).load do
36
24
  DESC
37
25
  task :subzero do
38
26
  transaction do
39
- ruby.update
40
- deploy.base
27
+ send(deployment_type).deploy.subzero
41
28
  end
42
29
  end
43
30
 
@@ -50,11 +37,7 @@ Capistrano::Configuration.instance(:must_exist).load do
50
37
  DESC
51
38
  task :initial do
52
39
  transaction do
53
- deploy.setup
54
- db.create
55
- website.install
56
- deploy.cold
57
- deploy.check
40
+ send(deployment_type).deploy.initial
58
41
  end
59
42
  end
60
43
 
@@ -68,8 +51,7 @@ Capistrano::Configuration.instance(:must_exist).load do
68
51
  DESC
69
52
  task :default do
70
53
  transaction do
71
- deploy.base
72
- deploy.restart
54
+ send(deployment_type).deploy.default
73
55
  end
74
56
  end
75
57
  end
@@ -32,21 +32,21 @@ Capistrano::Configuration.instance(:must_exist).load do
32
32
  task :staging do
33
33
  set :rails_env, 'staging'
34
34
 
35
- _cset(:domain) { "staging.#{application}.com" }
35
+ _cset(:domain) { "staging.#{application}.#{application_tld}" }
36
36
  end
37
37
 
38
38
  desc "[internal] Used to set up the intelligent princess defaults we like for our projects"
39
39
  task :princess do
40
40
  set :rails_env, 'princess'
41
41
 
42
- _cset(:domain) { "princess.#{application}.com" }
42
+ _cset(:domain) { "princess.#{application}.#{application_tld}" }
43
43
  end
44
44
 
45
45
  desc "[internal] Used to set up the intelligent production defaults we like for our projects"
46
46
  task :production do
47
47
  set :rails_env, 'production'
48
48
 
49
- _cset(:domain) { "#{application}.com" }
49
+ _cset(:domain) { "#{application}.#{application_tld}" }
50
50
  end
51
51
 
52
52
  desc "[internal] Sets intelligent common defaults for deployments"
@@ -68,6 +68,7 @@ Capistrano::Configuration.instance(:must_exist).load do
68
68
  _cset :notifiers, []
69
69
  _cset :tools, [:log]
70
70
 
71
+ _cset(:application_tld) {'com'}
71
72
  _cset(:application_underscored) {application.gsub(/-/, "_")}
72
73
 
73
74
  _cset(:latest_release_name) {exists?(:deploy_timestamped) ? release_name : releases.last}
@@ -2,7 +2,7 @@
2
2
  # AIRBRAKE NOTIFIER TASKS #
3
3
  ######################################################################
4
4
  Capistrano::Configuration.instance(:must_exist).load do
5
- after 'deploy:base', 'notify:via_airbrake'
5
+ after 'deploy', 'notify:via_airbrake'
6
6
 
7
7
  namespace :notify do
8
8
  desc <<-DESC
@@ -4,7 +4,7 @@
4
4
  require 'mail'
5
5
 
6
6
  Capistrano::Configuration.instance(:must_exist).load do |cap|
7
- after 'deploy:base', 'notify:via_email'
7
+ after 'deploy', 'notify:via_email'
8
8
 
9
9
  namespace :notify do
10
10
  desc <<-DESC
@@ -8,7 +8,7 @@ module ChickenSoup
8
8
  end
9
9
 
10
10
  Capistrano::Configuration.instance(:must_exist).load do
11
- after 'deploy:base', 'notify:via_git:tag'
11
+ after 'deploy', 'notify:via_git:tag'
12
12
 
13
13
  namespace :notify do
14
14
  namespace :via_git do
@@ -1,3 +1,3 @@
1
1
  module ChickenSoup
2
- VERSION = "0.8.6"
2
+ VERSION = "0.9.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chicken_soup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.6
4
+ version: 0.9.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,11 +10,11 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-01-16 00:00:00.000000000 Z
13
+ date: 2013-11-29 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capistrano
17
- requirement: &2156145460 !ruby/object:Gem::Requirement
17
+ requirement: !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
@@ -22,10 +22,15 @@ dependencies:
22
22
  version: 2.9.0
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *2156145460
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: 2.9.0
26
31
  - !ruby/object:Gem::Dependency
27
32
  name: mail
28
- requirement: &2156144860 !ruby/object:Gem::Requirement
33
+ requirement: !ruby/object:Gem::Requirement
29
34
  none: false
30
35
  requirements:
31
36
  - - ~>
@@ -33,32 +38,31 @@ dependencies:
33
38
  version: '2.2'
34
39
  type: :runtime
35
40
  prerelease: false
36
- version_requirements: *2156144860
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ~>
45
+ - !ruby/object:Gem::Version
46
+ version: '2.2'
37
47
  - !ruby/object:Gem::Dependency
38
48
  name: activesupport
39
- requirement: &2156142660 !ruby/object:Gem::Requirement
49
+ requirement: !ruby/object:Gem::Requirement
40
50
  none: false
41
51
  requirements:
42
52
  - - ~>
43
53
  - !ruby/object:Gem::Version
44
- version: '3.0'
54
+ version: '4.0'
45
55
  type: :runtime
46
56
  prerelease: false
47
- version_requirements: *2156142660
48
- - !ruby/object:Gem::Dependency
49
- name: bundler
50
- requirement: &2156139780 !ruby/object:Gem::Requirement
57
+ version_requirements: !ruby/object:Gem::Requirement
51
58
  none: false
52
59
  requirements:
53
60
  - - ~>
54
61
  - !ruby/object:Gem::Version
55
- version: 1.0.10
56
- type: :development
57
- prerelease: false
58
- version_requirements: *2156139780
62
+ version: '4.0'
59
63
  - !ruby/object:Gem::Dependency
60
64
  name: rspec
61
- requirement: &2156062880 !ruby/object:Gem::Requirement
65
+ requirement: !ruby/object:Gem::Requirement
62
66
  none: false
63
67
  requirements:
64
68
  - - ~>
@@ -66,10 +70,15 @@ dependencies:
66
70
  version: 2.6.0
67
71
  type: :development
68
72
  prerelease: false
69
- version_requirements: *2156062880
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: 2.6.0
70
79
  - !ruby/object:Gem::Dependency
71
80
  name: yard
72
- requirement: &2156062300 !ruby/object:Gem::Requirement
81
+ requirement: !ruby/object:Gem::Requirement
73
82
  none: false
74
83
  requirements:
75
84
  - - ~>
@@ -77,7 +86,12 @@ dependencies:
77
86
  version: 0.7.1
78
87
  type: :development
79
88
  prerelease: false
80
- version_requirements: *2156062300
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ~>
93
+ - !ruby/object:Gem::Version
94
+ version: 0.7.1
81
95
  description: Why do you keep typing all that crap into your Capistrano recipes? Are
82
96
  you too cool for standards? Well, ARE YA!?
83
97
  email: support@thekompanee.com
@@ -89,8 +103,9 @@ extra_rdoc_files:
89
103
  files:
90
104
  - .gitignore
91
105
  - .rspec
92
- - .rvmrc
106
+ - .ruby-version
93
107
  - Gemfile
108
+ - Gemfile.lock
94
109
  - LICENSE
95
110
  - README.md
96
111
  - Rakefile
@@ -186,9 +201,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
201
  version: '0'
187
202
  requirements: []
188
203
  rubyforge_project: chicken_soup
189
- rubygems_version: 1.8.10
204
+ rubygems_version: 1.8.23
190
205
  signing_key:
191
206
  specification_version: 3
192
207
  summary: ! '...for the Deployment Soul.'
193
208
  test_files:
194
209
  - spec/support/focused.rb
210
+ has_rdoc:
data/.rvmrc DELETED
@@ -1 +0,0 @@
1
- rvm use ruby-1.9.3-p0@chicken_soup