capistrano-file_db 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8f71f771b2604871d831c132118d44b1237700f1
4
+ data.tar.gz: bd5a7ba2c2e7f96fd29c2a5eb8c51c473e98378a
5
+ SHA512:
6
+ metadata.gz: 170019b523710e7b51e664fa4a80b5ca6c05ec0bf056824375d07548e0b70b43aca014e2699bbb6fd915f3ce7db6c7ced84348db37da601d3f7bf097f681d95b
7
+ data.tar.gz: 5c70abc2e520a7183b86dc3a15a708f3d6fbf2b9ea2ad2a0d4fe495d8e19f17815dedd536c9ce8b07d81884c914dd3487a1182cea705b39c7d237e95cb9c5736
data/README.md CHANGED
@@ -1,11 +1,12 @@
1
1
  # Simle capistrano plugin to manage database files
2
2
 
3
3
  Extracted it to not repeat myself next time I need to use sqlite db on server.
4
+ At first I wanted to name it "capistrano-sqlite3" but it could be used for any files, not only sqlite3 databases.
4
5
 
5
6
  ## Installation
6
7
 
7
8
  ```bash
8
- gem install capistrano-unicorn
9
+ gem install capistrano-file_db
9
10
  ```
10
11
 
11
12
  ## Usage
@@ -1,7 +1,6 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = 'capistrano-file_db'
3
- gem.version = '0.1.0'
4
- gem.date = "2012-03-11"
3
+ gem.version = '1.0.0'
5
4
  gem.authors = ["Michal Papis"]
6
5
  gem.email = "mpapis@gmail.com"
7
6
  gem.homepage = 'https://github.com/mpapis/capistrano-file_db'
@@ -28,7 +28,7 @@ class CapistranoFileDB
28
28
  end
29
29
 
30
30
  after 'deploy:finalize_update', 'file_db:symlink_db'
31
- after 'db:migrate', 'file_db:chmod_db'
31
+ after 'deploy:migrate', 'file_db:chmod_db'
32
32
  end
33
33
  end
34
34
  end
metadata CHANGED
@@ -1,59 +1,62 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: capistrano-file_db
3
- version: !ruby/object:Gem::Version
4
- version: 0.1.0
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
6
5
  platform: ruby
7
- authors:
6
+ authors:
8
7
  - Michal Papis
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-03-11 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
11
+
12
+ date: 2013-10-04 00:00:00 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
15
  name: capistrano
16
- requirement: &5948400 !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: '0'
22
- type: :runtime
23
16
  prerelease: false
24
- version_requirements: *5948400
17
+ requirement: &id001 !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - &id002
20
+ - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0"
23
+ type: :runtime
24
+ version_requirements: *id001
25
25
  description: Capistrano plugin that easies handling database files on production.
26
26
  email: mpapis@gmail.com
27
27
  executables: []
28
+
28
29
  extensions: []
30
+
29
31
  extra_rdoc_files: []
30
- files:
32
+
33
+ files:
31
34
  - lib/capistrano-file_db.rb
32
35
  - LICENSE
33
36
  - README.md
34
37
  - capistrano-file_db.gemspec
35
38
  homepage: https://github.com/mpapis/capistrano-file_db
36
39
  licenses: []
40
+
41
+ metadata: {}
42
+
37
43
  post_install_message:
38
44
  rdoc_options: []
39
- require_paths:
45
+
46
+ require_paths:
40
47
  - lib
41
- required_ruby_version: !ruby/object:Gem::Requirement
42
- none: false
43
- requirements:
44
- - - ! '>='
45
- - !ruby/object:Gem::Version
46
- version: '0'
47
- required_rubygems_version: !ruby/object:Gem::Requirement
48
- none: false
49
- requirements:
50
- - - ! '>='
51
- - !ruby/object:Gem::Version
52
- version: '0'
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - *id002
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - *id002
53
54
  requirements: []
55
+
54
56
  rubyforge_project:
55
- rubygems_version: 1.8.16
57
+ rubygems_version: 2.0.10
56
58
  signing_key:
57
- specification_version: 3
59
+ specification_version: 4
58
60
  summary: Sqlite3 integration for Capistrano
59
61
  test_files: []
62
+