shareable_models 0.5.0 → 0.6.0

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: e796a8beb7fd5cb2da6e89e2bbbb20e8ec3e5e83
4
- data.tar.gz: e8dc6c1c93f1974a468c604911cfe62baca7d356
3
+ metadata.gz: 33bbe2ef79dcbd35e77539d22408515aa6c2809b
4
+ data.tar.gz: db1538311301434df14935f023152b310668fdd8
5
5
  SHA512:
6
- metadata.gz: 7c5be905ae975526415d4a6ab0a36ad24085d875a9bede23d678e45590ed5ee0ceeeb4cd4f03ede9e759b4e55b739766614ec553e20828d3ee60df48efe82754
7
- data.tar.gz: 512fefd47b0a2402e71da8ab68337f553edf253c5440024c6cf0bc66979b7a67d5a5a8b70847bd6e50da192a25c0d536eec3cbe75cf0df3642142d71daafe6d9
6
+ metadata.gz: e327eb481d32c53a50cbb09d371364b14e45ffc424be99f2e6628c4f7bf701652c17fb15eb747162810c0794048dea83f12c42b94661de19953721ced49ff4c3
7
+ data.tar.gz: 2852d7b0dad11ff4adbf1a33a9505262ca98e5208f30c2662c90592ee30584df8fc7f48e37d3bb97730791d6743685e6cd59944081923861352ee834598d3621
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/shareable_models.svg)](http://badge.fury.io/rb/shareable_models) [![Build Status](https://travis-ci.org/redBorder/shareable_models.svg?branch=master)](https://travis-ci.org/redBorder/shareable_models)
2
+
1
3
  # Shareable Models
2
4
 
3
5
  Shareable models is a gem to share models between models. Is this strange? I will explain the functionality of this Gem with an example.
@@ -3,5 +3,5 @@
3
3
  #
4
4
  module ShareableModels
5
5
  # Version of the gem
6
- VERSION = '0.5.0'
6
+ VERSION = '0.6.0'
7
7
  end
@@ -10,8 +10,8 @@ Bundler.require(*Rails.groups)
10
10
  module Dummy
11
11
  class Application < Rails::Application
12
12
  # Do not swallow errors in after_commit/after_rollback callbacks.
13
- config.active_record.raise_in_transactional_callbacks = true
14
- config.encoding = "utf-8"
13
+ # config.active_record.raise_in_transactional_callbacks = true
14
+ config.encoding = 'utf-8'
15
15
  config.eager_load = false
16
16
  end
17
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shareable_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Angel M Miguel