jetfuel 1.19.4 → 1.19.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f3c06d2343e89b706c0794caa780d614a50849e
4
- data.tar.gz: 56e16154ee4c869dbbd215e03fe41dc4c6708eeb
3
+ metadata.gz: c29a77c9f4258348891fc0619531cf04eeb8e16a
4
+ data.tar.gz: 634358c587467c218e775f97670d633ef82509f0
5
5
  SHA512:
6
- metadata.gz: 244a9422674fccbae63e493930d8b04c07b0ab26af15c61eb19e6311ca6e0a17b01f5e4900fe49a1e995b3928b347b74bffc57a204b41d0ea964dcec5de5446d
7
- data.tar.gz: e2e5fad74d933b174f2e1e9cde8746c4d24b676b00afd4d771ef83e882b161db500006d8a6e68f2e372a75b5ffa5520e544fa68635a6a77d09d6e10b1b3ff166
6
+ metadata.gz: 07998d67b8a9750f837d5cc45e37216495de3ede40eeef5529c9d21e098f34de0b2c472d73218ce3f5c62a1b82a1d53b1fb6eac6346c7d449b868a8d8167744f
7
+ data.tar.gz: 784b2b8d651ffff31aeaadd1c1b9882ad5b7bb160785240dd0af8e66013e587273b21832cbdb0a8b6ef6b7a6d62d9279c4457b295bb4dd4cfdc14f037894af80
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jetfuel (1.19.4)
4
+ jetfuel (1.19.5)
5
5
  bundler (~> 1.3)
6
6
  rails (= 4.1.1)
7
7
 
data/README.md CHANGED
@@ -147,6 +147,20 @@ This:
147
147
  * Configures staging with `RACK_ENV` and `RAILS_ENV` environment variables set
148
148
  to `staging`
149
149
 
150
+ Capistrano
151
+ ----------
152
+
153
+ You can optionally install capistrano if you are deploying to a VPS like Digital Ocean:
154
+
155
+ jetfuel app --capistrano true
156
+
157
+ This:
158
+
159
+ * Adds capistrano and capistrano-rails to your gemfile
160
+ * Adds capistrano configuration files that should work with rails-fed-chef
161
+
162
+ You will need to tell the generator what your github repository and the IP address for your server are. Otherwise, you'll need to update those values in `config/deploy.rb` and `config/deploy/production.rb` when you have everything set up.
163
+
150
164
  Git
151
165
  ---
152
166
 
@@ -353,8 +353,8 @@ fi
353
353
  run "mkdir -p config/deploy"
354
354
  template 'Capfile', 'Capfile'
355
355
  template 'cap_deploy.erb', 'config/deploy.rb'
356
- template 'cap_staging.rb.erb', 'config/deploy/staging.rb'
357
- template 'cap_production.rb.erb', 'config/deploy/production.rb'
356
+ template 'cap_staging.erb', 'config/deploy/staging.rb'
357
+ template 'cap_production.erb', 'config/deploy/production.rb'
358
358
  run "mkdir -p lib/capistrano/tasks"
359
359
 
360
360
  replace_in_file 'config/deploy.rb', /GITHUB_REPO/, ask("What is your github repository address?")
@@ -1,5 +1,5 @@
1
1
  module Jetfuel
2
2
  RAILS_VERSION = '4.1.1'
3
3
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
4
- VERSION = '1.19.4'
4
+ VERSION = '1.19.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jetfuel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.4
4
+ version: 1.19.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - FlyoverWorks