active_poro 0.0.5 → 0.0.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 657deddc2134e4fcaaa62c9fbe84bece78e613bd
4
- data.tar.gz: 0268c80ce1c30a2462997463b86e94d64bd0b03b
3
+ metadata.gz: fa496638b91bd3e1d9d5131a6038307743bd43df
4
+ data.tar.gz: 7f29b624dfb0e24dcd3e22babbdd7103d2840668
5
5
  SHA512:
6
- metadata.gz: 02c15b6276f732edba9595b531f9640802d6a994e21ca64e947fd15993a67fb9010c1f5163639bc888b489f3cba76a4e8ae9e0e38082a6c2be17091a114a09eb
7
- data.tar.gz: 6ed9ae1f95d3be32edea5df94da58011f89e039a61ff900b79488275b0a51d9fcc83841d2e7dcf53efd35a0c68e7aaa8e3b8b19affc077e1e49432c8eb53b300
6
+ metadata.gz: 6f2e64ec5e5ceccff6167e56ec97f3ab2981bd83566866a13b180bcb8ec7cd713bbe52095bbee8d428c89616176efe6d6090009182bcb4b796b57322ffe985ca
7
+ data.tar.gz: d9cea0e5c5ff4ac3306b093cacd8da0e38006468885696852e7f36cc2403008bef0aa5bd12d0c798fa77303319ceeb42d07c24ddea6d9648cbdca19f20c34964
@@ -1,6 +1,6 @@
1
1
  require 'active_support'
2
2
  require 'active_support/core_ext/string'
3
3
 
4
- require 'active_poro/relations'
4
+ require 'active_poro/associations'
5
5
  require 'active_poro/model'
6
6
  require 'active_poro/version'
@@ -1,5 +1,5 @@
1
1
  module ActivePoro
2
- module Relations
2
+ module Associations
3
3
  extend ActiveSupport::Concern
4
4
 
5
5
  module ClassMethods
@@ -1,6 +1,6 @@
1
1
  module ActivePoro
2
2
  module Model
3
3
  extend ActiveSupport::Concern
4
- include Relations
4
+ include Associations
5
5
  end
6
6
  end
@@ -1,3 +1,3 @@
1
1
  module ActivePoro
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -2,7 +2,7 @@ require 'spec_helper'
2
2
 
3
3
  describe 'ActivePoro' do
4
4
  context 'Model' do
5
- context 'relations' do
5
+ context 'associations' do
6
6
 
7
7
  context 'has_one + belongs_to' do
8
8
  before do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_poro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Diaz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-19 00:00:00.000000000 Z
11
+ date: 2014-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -125,8 +125,8 @@ files:
125
125
  - Rakefile
126
126
  - active_poro.gemspec
127
127
  - lib/active_poro.rb
128
+ - lib/active_poro/associations.rb
128
129
  - lib/active_poro/model.rb
129
- - lib/active_poro/relations.rb
130
130
  - lib/active_poro/version.rb
131
131
  - spec/active_poro_spec.rb
132
132
  - spec/spec_helper.rb