deploy_couch 0.0.2 → 0.0.3

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.
data/Gemfile CHANGED
@@ -4,3 +4,4 @@ source "http://rubygems.org"
4
4
  gemspec
5
5
 
6
6
  gem 'rspec'
7
+ gem 'json'
data/Gemfile.lock CHANGED
@@ -1,12 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- deploy_couch (0.0.1)
4
+ deploy_couch (0.0.2)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
8
8
  specs:
9
9
  diff-lcs (1.1.2)
10
+ json (1.5.3)
10
11
  rspec (2.6.0)
11
12
  rspec-core (~> 2.6.0)
12
13
  rspec-expectations (~> 2.6.0)
@@ -21,4 +22,5 @@ PLATFORMS
21
22
 
22
23
  DEPENDENCIES
23
24
  deploy_couch!
25
+ json
24
26
  rspec
data/deploy_couch.gemspec CHANGED
@@ -5,7 +5,7 @@ require "deploy_couch/version"
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "deploy_couch"
7
7
  s.version = DeployCouch::VERSION
8
- s.authors = ["venky/mln"]
8
+ s.authors = ["venky","mln"]
9
9
  s.email = ["venkatesh.swdev@gmail.com"]
10
10
  s.homepage = "https://github.com/venkateshcm/deploy_couch"
11
11
  s.summary = "dbDeploy for couchdb"
@@ -17,4 +17,6 @@ Gem::Specification.new do |s|
17
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
+ s.add_dependency('json')
21
+ s.add_development_dependency('rspec')
20
22
  end
@@ -1,3 +1,3 @@
1
1
  module DeployCouch
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,17 +1,40 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deploy_couch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
- - venky/mln
8
+ - venky
9
+ - mln
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
13
  date: 2011-07-26 00:00:00.000000000 +05:30
13
14
  default_executable:
14
- dependencies: []
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: json
18
+ requirement: &2161075200 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ! '>='
22
+ - !ruby/object:Gem::Version
23
+ version: '0'
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: *2161075200
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: &2161074760 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: *2161074760
15
38
  description: dbDeploy for couchdb
16
39
  email:
17
40
  - venkatesh.swdev@gmail.com