production_chain 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -12,7 +12,7 @@ Capistrano tasks are *not* automatically loaded. You have to add to your `config
12
12
 
13
13
  ```ruby
14
14
  require 'bundler/setup'
15
- require 'production_chain'
15
+ require 'production_chain/capistrano'
16
16
  ```
17
17
 
18
18
  ### Known issues
@@ -10,7 +10,7 @@ Capistrano::Configuration.instance.load do
10
10
  get "#{current_release}/db/dump.tar.gz", "db/dump.tar.gz"
11
11
  cmd = "RAILS_ENV=#{ ENV['RAILS_ENV'] || "development" } FILE=#{file_env} #{rake} db:restore"
12
12
  puts cmd
13
- system cmd
13
+ system(cmd) && puts('finished')
14
14
  end
15
15
  end
16
16
 
@@ -1,3 +1,3 @@
1
1
  module ProductionChain
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,23 +1,33 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: production_chain
3
- version: !ruby/object:Gem::Version
4
- version: 0.0.4
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 5
9
+ version: 0.0.5
6
10
  platform: ruby
7
- authors:
11
+ authors:
8
12
  - Novelys
9
13
  autorequire:
10
14
  bindir: bin
11
15
  cert_chain: []
12
- date: 2012-06-12 00:00:00.000000000 Z
16
+
17
+ date: 2012-06-19 00:00:00 +02:00
18
+ default_executable:
13
19
  dependencies: []
20
+
14
21
  description: A rails plugin that incorporate various libs, recipes and tasks
15
- email:
22
+ email:
16
23
  - contact@novelys.com
17
24
  executables: []
25
+
18
26
  extensions: []
27
+
19
28
  extra_rdoc_files: []
20
- files:
29
+
30
+ files:
21
31
  - .gitignore
22
32
  - README.md
23
33
  - lib/core_ext/numeric.rb
@@ -37,28 +47,37 @@ files:
37
47
  - lib/tasks/revision.rake
38
48
  - production_chain.gemspec
39
49
  - rails/init.rb
50
+ has_rdoc: true
40
51
  homepage: http://github.com/novelys/production_chain
41
52
  licenses: []
53
+
42
54
  post_install_message:
43
55
  rdoc_options: []
44
- require_paths:
56
+
57
+ require_paths:
45
58
  - lib
46
- required_ruby_version: !ruby/object:Gem::Requirement
47
- none: false
48
- requirements:
49
- - - ! '>='
50
- - !ruby/object:Gem::Version
51
- version: '0'
52
- required_rubygems_version: !ruby/object:Gem::Requirement
53
- none: false
54
- requirements:
55
- - - ! '>='
56
- - !ruby/object:Gem::Version
59
+ required_ruby_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ segments:
64
+ - 0
65
+ version: "0"
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ segments:
71
+ - 1
72
+ - 3
73
+ - 6
57
74
  version: 1.3.6
58
75
  requirements: []
76
+
59
77
  rubyforge_project: production_chain
60
- rubygems_version: 1.8.11
78
+ rubygems_version: 1.3.6
61
79
  signing_key:
62
80
  specification_version: 3
63
81
  summary: Production Chain
64
82
  test_files: []
83
+