active_orm 2.1.0 → 2.2.0

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: 5650292e8b9bbac3eb802b6de000823ae42f8850
4
- data.tar.gz: ff6f1d95cc140f1b3e07ee1b254b2240083b50a1
3
+ metadata.gz: c572fa0ae21f5c0bc8595134d3ed812e0918829f
4
+ data.tar.gz: bd21a15e5f00d97aa1dc63818bd97d3f24f2f582
5
5
  SHA512:
6
- metadata.gz: aa5e1eddbc50075f8409e460b6a4ee04b8af2f0aff9f89b59dc7297df155cce864880f4c6e1f5afb3e6cff4cb1c8400a034a8f7854b16072e064cc856c1644d0
7
- data.tar.gz: 1eeef7b4b480b5adf813caeed2907396338659275ab94d39d3d7a9eca5f2e6e1ef695c582b9004d229629f22e2793f7e7e99e3cdcb82a7280b0b2e2adb5bab8d
6
+ metadata.gz: 504603935d21ad05dba07ac0d1a93d650415a676cc505e61b1893516e62147ce2203fe2464fb5b96680b7691a663985654a6c11e594274c3c19bb6a78711e117
7
+ data.tar.gz: 8bb12d6bb396ad30c9ef7224926c98fe85aa24a44a43d147efdbaf43418fc85c188dda3b02508412c6c76977b356a51f310efd7be7aaf2e0909082b4b52e76db
data/active_orm.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Juan Gomez"]
10
10
  spec.email = ["j.gomez@drexed.com"]
11
11
 
12
- spec.summary = %q{Commonly used database ORM.}
12
+ spec.summary = %q{Gem for commonly used database ORM.}
13
13
  spec.description = %q{ORM for non-supported databases.}
14
14
  spec.homepage = "https://github.com/drexed/active_orm"
15
15
  spec.license = "MIT"
@@ -1,4 +1,8 @@
1
- require "redis"
1
+ begin
2
+ require "fakeredis"
3
+ rescue LoadError
4
+ require "redis"
5
+ end
2
6
 
3
7
  require "active_orm/redis/base"
4
8
  require "active_orm/redis/configuration"
@@ -1,3 +1,3 @@
1
1
  module ActiveOrm
2
- VERSION = "2.1.0"
2
+ VERSION = "2.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_orm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-08-21 00:00:00.000000000 Z
11
+ date: 2015-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -157,5 +157,5 @@ rubyforge_project:
157
157
  rubygems_version: 2.4.8
158
158
  signing_key:
159
159
  specification_version: 4
160
- summary: Commonly used database ORM.
160
+ summary: Gem for commonly used database ORM.
161
161
  test_files: []