biola_deploy 0.6.1 → 0.6.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c636141f9398ec7bfd2e098b94060a2db6df1589
4
- data.tar.gz: c1dc52659a9505af692bb7a86713a108150ddf53
3
+ metadata.gz: 84232a1fbd9b6cba390e6a8f0259d967cc7b6767
4
+ data.tar.gz: 8ca53e700dec01f64b9dc2f3e33b1e6ab8ba8852
5
5
  SHA512:
6
- metadata.gz: 5328d5355bc519a52aa0590286dc29bc68809d6371b9a79f62a747dcd2259056a39afd29ac879f0943b4a56827673e95cd3f0c47b72b5d89163668b874b29fbf
7
- data.tar.gz: fccf985447cf87e07afddbc2e5493c0c5e577684ff30c2e8a164d3fba758d9687e149a9b9361725223bcf6b1c343d96e4f2e22e76ae29f013546788764f9c672
6
+ metadata.gz: 904bf0f30fd8cb781499a0ad832640e603a4fb55c867d2836c7562847485eb6ab8bac3e42fd4ae3a9d007f86da65687d703f473b69350f15ccabf10cba935043
7
+ data.tar.gz: 525ff29fececc1009b88a3bde6dfd513d9c3017968d69a71726833f8f17fe40daf59e518e505f743a73e6fee7962cf6e4dd438661f316db6114df44f3e62d40d
@@ -1,6 +1,5 @@
1
1
  require 'biola_deploy'
2
2
  require 'rails'
3
- require 'active_record'
4
3
 
5
4
  module BiolaDeploy
6
5
  class Engine < Rails::Engine
@@ -1,3 +1,3 @@
1
1
  module BiolaDeploy
2
- VERSION = '0.6.1'
2
+ VERSION = '0.6.2'
3
3
  end
@@ -4,6 +4,7 @@ namespace :deploy do
4
4
  desc 'Run the database migrations'
5
5
  task :migrate_db do
6
6
  if_rails_loads 'database migration' do
7
+ require 'active_record'
7
8
  Rake::Task['db:migrate'].invoke
8
9
  end
9
10
  end
@@ -11,6 +12,7 @@ namespace :deploy do
11
12
  desc 'Seed the database'
12
13
  task :seed_db do
13
14
  if_rails_loads 'database seed' do
15
+ require 'active_record'
14
16
  Rake::Task['db:seed'].invoke
15
17
  end
16
18
  end
@@ -34,7 +36,7 @@ namespace :deploy do
34
36
  if_rails_loads 'NewRelic deployment' do
35
37
  if Rails.env.production?
36
38
  require 'new_relic/cli/command'
37
- require 'new_relic/cli/deployments'
39
+ require 'new_relic/cli/commands/deployments'
38
40
 
39
41
  version = if defined? Version
40
42
  Version.current
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: biola_deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Crownoble
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-25 00:00:00.000000000 Z
11
+ date: 2014-05-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Designed to automate deployment of Rails applications using rake tasks
14
14
  email: adam.crownoble@biola.edu