dps 0.0.3 → 0.0.4

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
  SHA256:
3
- metadata.gz: f6bcfbdc8e0ef48e5c38505ca0d5e08ad4976f78e0cd242f1a57215ceae46da6
4
- data.tar.gz: '0568d8eebea462377ad1ce3ba3c8a41e079308f5620bcb2855f9750d9d3c0c0b'
3
+ metadata.gz: a57010f4bbb251e12f4d2e1c72d79f910c7f27f5c6324d4f147a7365759b370f
4
+ data.tar.gz: 9c31b70b6797cc4e2aa3c0c55058b6c9679e030da777c32d4a7c1682e0ef871f
5
5
  SHA512:
6
- metadata.gz: 9a3c88359398b5f95436eb103691496b13844177d16d4864dd226e1ad0f3b06cbca493f4a9646cd26c7ff4727bc31a93f11562ed130923a2dfc3276f2bcac948
7
- data.tar.gz: 5b4fa1290ed2a10a79ab8717076d92425709342f26dd3275fa64346948cbfb4f800165e375bd66a7d34da255848d7963038149323c9809587717e2b632ea0af1
6
+ metadata.gz: 668ee137171f8e75cfaf1f413f7743e0bfc4bded9d1990d8d22505ca4e8e5f0db159f21a07a3d3b7885f13b06a3cb05b91359bfc84eb660349d9effdaf57bde6
7
+ data.tar.gz: 13a439403865fd16477df93d6db732b624616ba624bbb090e05a50bdcb11e28e4e0b1e1152127c102e973eaef6a8fac1c37de743c6e299141570a493a5b79a1d
data/.gitignore CHANGED
@@ -9,3 +9,6 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ # 'gem bump' assumes Gemfile.lock is not being checked in, so ignore it.
14
+ Gemfile.lock
@@ -54,7 +54,7 @@ module DPS
54
54
  class NoRecords < StandardError; end
55
55
  class TooManyRecords < StandardError; end
56
56
  class InvalidRecord < StandardError
57
- def self.valid?
57
+ def valid?
58
58
  false
59
59
  end
60
60
  end
@@ -1,3 +1,3 @@
1
1
  module DPS
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mat Holroyd
@@ -77,7 +77,6 @@ extra_rdoc_files: []
77
77
  files:
78
78
  - ".gitignore"
79
79
  - Gemfile
80
- - Gemfile.lock
81
80
  - LICENSE.txt
82
81
  - README.md
83
82
  - Rakefile
@@ -1,41 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- dps (0.0.2)
5
- dnsruby (~> 1.61)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- addressable (2.6.0)
11
- public_suffix (>= 2.0.2, < 4.0)
12
- diff-lcs (1.3)
13
- dnsruby (1.61.2)
14
- addressable (~> 2.5)
15
- public_suffix (3.0.3)
16
- rake (12.3.2)
17
- rspec (3.8.0)
18
- rspec-core (~> 3.8.0)
19
- rspec-expectations (~> 3.8.0)
20
- rspec-mocks (~> 3.8.0)
21
- rspec-core (3.8.0)
22
- rspec-support (~> 3.8.0)
23
- rspec-expectations (3.8.1)
24
- diff-lcs (>= 1.2.0, < 2.0)
25
- rspec-support (~> 3.8.0)
26
- rspec-mocks (3.8.0)
27
- diff-lcs (>= 1.2.0, < 2.0)
28
- rspec-support (~> 3.8.0)
29
- rspec-support (3.8.0)
30
-
31
- PLATFORMS
32
- ruby
33
-
34
- DEPENDENCIES
35
- bundler (~> 1.17.a)
36
- dps!
37
- rake (~> 12.3)
38
- rspec (~> 3.8)
39
-
40
- BUNDLED WITH
41
- 1.17.3