pebbles-path 0.0.1 → 0.0.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.
- data/README.md +3 -3
- data/lib/pebbles-path.rb +1 -1
- data/lib/pebbles-path/version.rb +1 -1
- metadata +5 -5
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# Pebbles::Path
|
2
2
|
|
3
3
|
Provides searchable, parseable pebbles-compliant UID paths, e.g. (such as `a.b.*`) for Active Record models.
|
4
4
|
|
@@ -51,11 +51,11 @@ Create a migration for the table that you want to put the paths on, e.g.
|
|
51
51
|
|
52
52
|
## Usage
|
53
53
|
|
54
|
-
Include the `
|
54
|
+
Include the `Pebbles::Path` module in the `ActiveRecord` model that has the labels
|
55
55
|
|
56
56
|
```
|
57
57
|
class Location < ActiveRecord::Base
|
58
|
-
include
|
58
|
+
include Pebbles::Path
|
59
59
|
end
|
60
60
|
```
|
61
61
|
|
data/lib/pebbles-path.rb
CHANGED
@@ -24,7 +24,7 @@ module Pebbles
|
|
24
24
|
|
25
25
|
def self.declare!(path)
|
26
26
|
raise ArgumentError, "Path must be valid" unless Pebbles::Uid.valid_path?(path)
|
27
|
-
attributes =
|
27
|
+
attributes = Pebble::Path.to_conditions(path)
|
28
28
|
path = self.where(attributes).first
|
29
29
|
path ||= self.create!(attributes)
|
30
30
|
end
|
data/lib/pebbles-path/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pebbles-path
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-10-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
16
|
-
requirement: &
|
16
|
+
requirement: &70304819422400 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70304819422400
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: pebbles-uid
|
27
|
-
requirement: &
|
27
|
+
requirement: &70304819421600 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: 0.0.6
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70304819421600
|
36
36
|
description: Provide pebble-compliant paths for ActiveRecord models.
|
37
37
|
email:
|
38
38
|
- katrina.owen@gmail.com
|