cequel 2.0.0 → 2.0.1

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: 72c4d009a896299d69e6d3f7aad381238fcb0483
4
- data.tar.gz: e90819d05105818943bff45f774499bb63b66ec1
3
+ metadata.gz: 39be41ec7fa476af8f992f29924fd443953878f6
4
+ data.tar.gz: fe9ff8053a6fd8b895451af0e3d873c05a9900b1
5
5
  SHA512:
6
- metadata.gz: d5b553d23b9df917acb80018becd971f4a05206a6c03e023f596593ce996706814550fbc40e3d9665a9a32804c82072eed4c64c39b18f2933e5400c25e31204a
7
- data.tar.gz: 75e37e197a278752e4f2c7c18bfd712827601131ed61652519c762ae17d9cce954c546fc1e6db849598fecfb14d4b1e329fc037b9afa24c4e7fc6fb8feaf62f0
6
+ metadata.gz: 15247d49c41700123aad6763a7891fd7cf99c216aa3adfc37e00746c531fcb7c10565af34570914358ee8cd8a098745bca0a2c348b0bfd6a193ab1a9ba017030
7
+ data.tar.gz: 3f1f170c476ae40e64530c43c9f57f732b2d8ac63f06c9e27e07edd6b69e30b67b68cca25636c0602281802c7bf1d8b27c9be1909af6d3eb0936ed570de9c603
@@ -1,3 +1,7 @@
1
+ ## 2.0.1
2
+
3
+ * Remove requirment on activemodel-serializers-xml ([PR 329](https://github.com/cequel/cequel/pull/329))
4
+
1
5
  ## 2.0.0
2
6
 
3
7
  * add support for Cassandra 3.x ([PR 324](https://github.com/cequel/cequel/pull/324))
data/Gemfile CHANGED
@@ -15,4 +15,3 @@ end
15
15
  gem 'racc', '~> 1.4', :platforms => :rbx
16
16
  gem 'rubysl', '~> 2.0', :platforms => :rbx
17
17
  gem 'psych', '~> 2.0', :platforms => :rbx
18
- gem 'activemodel-serializers-xml'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cequel (2.0.0)
4
+ cequel (2.0.1)
5
5
  activemodel (>= 4.0)
6
6
  cassandra-driver (~> 3.0)
7
7
 
@@ -10,15 +10,6 @@ GEM
10
10
  specs:
11
11
  activemodel (5.0.0.1)
12
12
  activesupport (= 5.0.0.1)
13
- activemodel-serializers-xml (1.0.1)
14
- activemodel (> 5.x)
15
- activerecord (> 5.x)
16
- activesupport (> 5.x)
17
- builder (~> 3.1)
18
- activerecord (5.0.0.1)
19
- activemodel (= 5.0.0.1)
20
- activesupport (= 5.0.0.1)
21
- arel (~> 7.0)
22
13
  activesupport (5.0.0.1)
23
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
24
15
  i18n (~> 0.7)
@@ -29,21 +20,16 @@ GEM
29
20
  bundler
30
21
  rake
31
22
  thor (>= 0.14.0)
32
- arel (7.1.2)
33
23
  ast (2.3.0)
34
24
  backports (3.6.8)
35
- builder (3.2.2)
36
25
  byebug (2.7.0)
37
26
  columnize (~> 0.3)
38
27
  debugger-linecache (~> 1.2)
39
28
  cassandra-driver (3.0.3)
40
29
  ione (~> 1.2)
41
- cassandra-driver (3.0.3-java)
42
- ione (~> 1.2)
43
30
  coderay (1.1.1)
44
31
  columnize (0.9.0)
45
32
  concurrent-ruby (1.0.2)
46
- concurrent-ruby (1.0.2-java)
47
33
  debugger (1.6.8)
48
34
  columnize (>= 0.3.1)
49
35
  debugger-linecache (~> 1.2.0)
@@ -332,7 +318,6 @@ GEM
332
318
  ffi
333
319
  thor (0.19.1)
334
320
  thread_safe (0.3.5)
335
- thread_safe (0.3.5-java)
336
321
  timecop (0.8.1)
337
322
  travis (1.8.2)
338
323
  backports
@@ -357,7 +342,6 @@ PLATFORMS
357
342
  ruby
358
343
 
359
344
  DEPENDENCIES
360
- activemodel-serializers-xml
361
345
  appraisal (~> 1.0)
362
346
  byebug (~> 2.7)
363
347
  cequel!
@@ -94,7 +94,7 @@ module Cequel
94
94
  extend ActiveModel::Naming
95
95
  include Conversion
96
96
  include ActiveModel::Serializers::JSON
97
- include ActiveModel::Serializers::Xml
97
+ include ActiveModel::Serializers::Xml if defined?(ActiveModel::Serializers::Xml)
98
98
  include Timestamps
99
99
  end
100
100
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module Cequel
3
3
  # The current version of the library
4
- VERSION = '2.0.0'
4
+ VERSION = '2.0.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cequel
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mat Brown
@@ -29,7 +29,7 @@ authors:
29
29
  autorequire:
30
30
  bindir: bin
31
31
  cert_chain: []
32
- date: 2016-10-02 00:00:00.000000000 Z
32
+ date: 2016-10-06 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: activemodel