jsonapi_rails 0.0.1.beta
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 +7 -0
- data/Gemfile +0 -0
- data/jsonapi_rails.gemspec +23 -0
- metadata +75 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 292460caa692e53c68f683b581725044941d51ee
|
|
4
|
+
data.tar.gz: aff405dbc9efa885f7bad6061e0148f0ab492107
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 23bb3ddab4db184979572b9423dd29e35e78d02eb8da36901ac565bb584522f7804e8d6c853f763a9a53ace0763475bd53f7f6ad37f932a8126a9de7f30022e4
|
|
7
|
+
data.tar.gz: fb1a38694d92bdb37f4c998202239de34660096898bc0a7b5d067d7fc8a52c9e5450858daec66c2172b9f7b2ca5c613e9564c6bbca252225cb30a9b66c45b578
|
data/Gemfile
ADDED
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'jsonapi_rails/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "jsonapi_rails"
|
|
8
|
+
spec.version = JsonApiRails::VERSION
|
|
9
|
+
spec.authors = ["Tracey Eubanks"]
|
|
10
|
+
spec.email = ["tracey.eubanks1337@gmail.com"]
|
|
11
|
+
spec.description = %q{Rails plugin for an extremely lightweight implementation of JSON API}
|
|
12
|
+
spec.summary = %q{Extremely lightweight implementation of JSON API}
|
|
13
|
+
spec.homepage = "https://github.com/teubanks/jsonapi_rails"
|
|
14
|
+
spec.license = "Free For All"
|
|
15
|
+
|
|
16
|
+
spec.files = `git ls-files`.split($/)
|
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
+
spec.require_paths = ["lib"]
|
|
20
|
+
|
|
21
|
+
spec.add_dependency "jsonapi_ruby", "~> 0.1"
|
|
22
|
+
spec.add_dependency "rails", "~> 3.2"
|
|
23
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: jsonapi_rails
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1.beta
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Tracey Eubanks
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-02-05 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jsonapi_ruby
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0.1'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rails
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ~>
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '3.2'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ~>
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '3.2'
|
|
41
|
+
description: Rails plugin for an extremely lightweight implementation of JSON API
|
|
42
|
+
email:
|
|
43
|
+
- tracey.eubanks1337@gmail.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- Gemfile
|
|
49
|
+
- jsonapi_rails.gemspec
|
|
50
|
+
homepage: https://github.com/teubanks/jsonapi_rails
|
|
51
|
+
licenses:
|
|
52
|
+
- Free For All
|
|
53
|
+
metadata: {}
|
|
54
|
+
post_install_message:
|
|
55
|
+
rdoc_options: []
|
|
56
|
+
require_paths:
|
|
57
|
+
- lib
|
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - '>='
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '0'
|
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - '>'
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 1.3.1
|
|
68
|
+
requirements: []
|
|
69
|
+
rubyforge_project:
|
|
70
|
+
rubygems_version: 2.0.14
|
|
71
|
+
signing_key:
|
|
72
|
+
specification_version: 4
|
|
73
|
+
summary: Extremely lightweight implementation of JSON API
|
|
74
|
+
test_files: []
|
|
75
|
+
has_rdoc:
|