api_me 0.5.0 → 0.5.1

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: 02a356aba53a5aadcbbccb6dd04d7e4e5cc3cb51
4
- data.tar.gz: c544bba077a0144161f4bf585e6d77a39cfb9d79
3
+ metadata.gz: 188a83e0e2c7f68ab3e93f6804c68036cf6c738d
4
+ data.tar.gz: 883d9828de595295e29707e8370e9ec9d1066bb0
5
5
  SHA512:
6
- metadata.gz: 03ff2f340a021a3d81363cda80165971cb42dccd0375ea80142f42ab08ac6fff4b265cd733b76c9e816f8295c5a4eec3540c844d4c29ececf598368a91fe5f48
7
- data.tar.gz: 9eda9a733e53c50b7dcde5df28d7771eec648bd55ce21f35fd0167432e3e9a44f19ec7eb4ed238cb5df9f73c37dba6baf3c747fdccf40d00c83bcb53cd99faab
6
+ metadata.gz: fa542c0999829d20629c9bd080b24d78a010514f58a75592613f50462f80d3cc8086671e45cf46962f9dc77d23d5dbee75c155f0f66ff78a0cb789a7b6c28a77
7
+ data.tar.gz: 9489ca39cf60841d2a7b7ed8e97d3044f3f712fca08fd39861e107415fe0e400ca7e2294da12e0af7a6e303f3c477033c3dd5f9893054c79fa5f69b9df79cccd
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  Gemfile.lock
2
2
  spec/internal/db/*sqlite
3
3
  pkg/
4
+ *.swp
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Gem Version](https://badge.fury.io/rb/api_me.png)](http://badge.fury.io/rb/api_me) [![Build Status](https://travis-ci.org/inigo-llc/api_me.png?branch=master)](https://travis-ci.org/inigo-llc/api_me) [![Code Climate](https://codeclimate.com/github/inigo-llc/api_me/badges/gpa.svg)](https://codeclimate.com/github/inigo-llc/api_me) [![Dependency Status](https://gemnasium.com/inigo-llc/api_me.svg)](https://gemnasium.com/inigo-llc/api_me)
1
+ [![Gem Version](https://badge.fury.io/rb/api_me.png)](http://badge.fury.io/rb/api_me) [![Build Status](https://travis-ci.org/wildland/api_me.svg?branch=master)](https://travis-ci.org/inigo-llc/api_me) [![Code Climate](https://codeclimate.com/github/inigo-llc/api_me/badges/gpa.svg)](https://codeclimate.com/github/inigo-llc/api_me) [![Dependency Status](https://gemnasium.com/inigo-llc/api_me.svg)](https://gemnasium.com/inigo-llc/api_me)
2
2
  ApiMe
3
3
  =========
4
4
 
@@ -0,0 +1,11 @@
1
+ begin
2
+ require "active_model_serializers"
3
+ rescue LoadError
4
+ puts "Could not load 'active_model_serializers'"
5
+ exit
6
+ end
7
+
8
+ module ApiMe
9
+ class Engine < ::Rails::Engine
10
+ end
11
+ end
@@ -1,3 +1,3 @@
1
1
  module ApiMe
2
- VERSION = '0.5.0'
2
+ VERSION = '0.5.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: api_me
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Clopton
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-02-02 00:00:00.000000000 Z
12
+ date: 2016-03-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
@@ -185,6 +185,7 @@ files:
185
185
  - config.ru
186
186
  - lib/api_me.rb
187
187
  - lib/api_me/base_filter.rb
188
+ - lib/api_me/engine.rb
188
189
  - lib/api_me/pagination.rb
189
190
  - lib/api_me/version.rb
190
191
  - lib/generators/api_me/controller/USAGE