lotus-model 0.2.3 → 0.2.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
  SHA1:
3
- metadata.gz: 21b47eded2bba593382296d73c0727abf8ddd66e
4
- data.tar.gz: 754980ca9235ce3e9793107df6ca404b8149b989
3
+ metadata.gz: d9b8be05452d72973dfe52baddeb52b8510c65f2
4
+ data.tar.gz: 4786325b8907e16e408259da3e1ff56846739d32
5
5
  SHA512:
6
- metadata.gz: 513bf99f0c78f425195c4f5267458b50b393ce39ee0de5247b1a9c8a53605b9ae2f8c4ecfbaf01539dcbea67958c1866fbe30fe010709f6996aed86b0cbed78c
7
- data.tar.gz: 2082546bca510c65e6ca5ee453dfc9d49500589893443078282bf69eac16070973febcefb2da1313ea19c4a06297941c5c3c966776f2015e9b4f7ed220edd71b
6
+ metadata.gz: 2a98aa092e3e74a6a15ec494b51360142ed6cdf1d1f153a9b70c769f68eae47b54af4e0c74c3de6bbe8b1abeda6abf9eb0c6d23c47859f14b8b3337208f8abb7
7
+ data.tar.gz: a41f041635936b946c3f0870839457e25d33cfaa7af81e2f03f6434cc7c38d21cf7d9562897001d2fd54061c6a11ed7531da66df37d6b69d93629a7d5dc7aeb5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Lotus::Model
2
2
  A persistence layer for Lotus
3
3
 
4
+ ## v0.2.4 - 2015-02-20
5
+ ### Fixed
6
+ - [Luca Guidi] When duplicate the framework don't copy over the original `Lotus::Model` configuration.
7
+
4
8
  ## v0.2.3 - 2015-02-13
5
9
  ### Added
6
10
  - [Alfonso Uceda Pompa] Added support for database transactions in repositories
data/lib/lotus/model.rb CHANGED
@@ -131,7 +131,7 @@ module Lotus
131
131
  # MyApi::Model.configuration.adapter_config.uri # => 'postgresql://uri'
132
132
  def self.dupe
133
133
  dup.tap do |duplicated|
134
- duplicated.configuration = configuration.duplicate
134
+ duplicated.configuration = Configuration.new
135
135
  end
136
136
  end
137
137
 
@@ -3,6 +3,6 @@ module Lotus
3
3
  # Defines the version
4
4
  #
5
5
  # @since 0.1.0
6
- VERSION = '0.2.3'.freeze
6
+ VERSION = '0.2.4'.freeze
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lotus-model
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-02-13 00:00:00.000000000 Z
12
+ date: 2015-02-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: lotus-utils