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 CHANGED
@@ -1,4 +1,4 @@
1
- # PebblePath
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 `PebblePath` module in the `ActiveRecord` model that has the labels
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 PebblePath
58
+ include Pebbles::Path
59
59
  end
60
60
  ```
61
61
 
@@ -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 = PebblePath.to_conditions(path)
27
+ attributes = Pebble::Path.to_conditions(path)
28
28
  path = self.where(attributes).first
29
29
  path ||= self.create!(attributes)
30
30
  end
@@ -1,5 +1,5 @@
1
1
  module Pebbles
2
2
  module Path
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
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.1
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: &70095621197620 !ruby/object:Gem::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: *70095621197620
24
+ version_requirements: *70304819422400
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: pebbles-uid
27
- requirement: &70095621196600 !ruby/object:Gem::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: *70095621196600
35
+ version_requirements: *70304819421600
36
36
  description: Provide pebble-compliant paths for ActiveRecord models.
37
37
  email:
38
38
  - katrina.owen@gmail.com