spree_api_v2 0.2.0 → 0.2.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: 78b31b9f376a72bcdfea55d6a321d7055baf8190
4
- data.tar.gz: 17ae23082a1acad8ffe11c072c6c94a874d8f8ba
3
+ metadata.gz: f51afd9a854980b7d847abef045328252894dab1
4
+ data.tar.gz: d50ea8d48e1bbb2c14b933462a945308e1c0a8d4
5
5
  SHA512:
6
- metadata.gz: 5e992c7e6d7a2ff6d6da4ae8df022e8a470e635f5eefb0ab60a16d4e188e87b2537c516566e6c8cd01c8bce6f92dfb039a0b980b861a050ca0bc2fb6ffa92c6d
7
- data.tar.gz: 685e624f84813fab02c5925d3c1069fed5bb3855529351317c10d60890fb5d568cdd1924a2f1ca521eb30f41084ae3610581c2234defb58839d2f892056b85c4
6
+ metadata.gz: 203d4c79428e91ec1a91cda9095cc893f50b360a6a85ed539a98c13a19b99a3de9339c8218bdd87920fa67cd01123e8bd26c497defe508955d59471a83ca2651
7
+ data.tar.gz: bf350c0d32a9aac8c763454455b8f8e84d42c72ed6e1017ac9c5867745ce23cf75127af59fad83b73be10fce0dc133dbb1a3e52774b377041f785d559bf65b9c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1
4
+
5
+ * Fixes a bug where the user serializer wasn't extending from the `Spree::BaseSerializer` this is now fixed.
6
+
7
+ [Ben A. Morgan](https://github.com/BenMorganIO)
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  * Calling `super` inside fo `#index` and `#show` actions is now deprecated.
@@ -1,5 +1,5 @@
1
1
  module Spree
2
- class UserSerializer < ActiveModel::Serializer
2
+ class UserSerializer < Spree::BaseSerializer
3
3
  attributes :id, :email
4
4
  end
5
5
  end
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  s.platform = Gem::Platform::RUBY
4
4
  s.name = 'solidus_api_v2'
5
- s.version = '0.2.0'
5
+ s.version = '0.2.1'
6
6
  s.summary = 'The V2 API for Solidus.'
7
7
  s.description = 'Adds an assortment of new api endpoints that are JSON API compatible.'
8
8
  s.required_ruby_version = '>= 2.0.0'
data/spree_api_v2.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  s.platform = Gem::Platform::RUBY
4
4
  s.name = 'spree_api_v2'
5
- s.version = '0.2.0'
5
+ s.version = '0.2.1'
6
6
  s.summary = 'The V2 API for Spree.'
7
7
  s.description = 'Adds an assortment of new api endpoints that are JSON API compatible.'
8
8
  s.required_ruby_version = '>= 2.0.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree_api_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben A. Morgan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-14 00:00:00.000000000 Z
11
+ date: 2015-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: spree_api