sk_api_schema 0.7.3 → 0.7.4
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.
- data/lib/sk_api_schema/version.rb +1 -1
- data/sk_api_schema.gemspec +9 -12
- metadata +4 -4
data/sk_api_schema.gemspec
CHANGED
|
@@ -3,23 +3,20 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
|
3
3
|
require 'sk_api_schema/version'
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
s.version
|
|
7
|
-
s.
|
|
8
|
-
s.
|
|
9
|
-
s.summary = 'SalesKing API - JSON Schema'
|
|
6
|
+
s.version = SK::Api::Schema::VERSION
|
|
7
|
+
s.name = %q{sk_api_schema}
|
|
8
|
+
s.summary = 'SalesKing API - JSON Schema'
|
|
10
9
|
s.description = %q{The SalesKing JSON Schema describes our business API in terms of available objects, their fields and links to url endpoints with related objects.
|
|
11
10
|
Besides ruby users can use a small lib with utility methods to load and test the schema files.}
|
|
12
|
-
s.authors
|
|
13
|
-
s.email
|
|
14
|
-
s.homepage
|
|
11
|
+
s.authors = ['Georg Leciejewski']
|
|
12
|
+
s.email = %q{gl@salesking.eu}
|
|
13
|
+
s.homepage = %q{http://github.com/salesking/sk_api_schema}
|
|
14
|
+
|
|
15
|
+
s.files = `git ls-files`.split("\n").reject{|i| i[/^docs\//] }
|
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
15
17
|
s.extra_rdoc_files = ['README.rdoc']
|
|
16
|
-
s.executables = nil
|
|
17
|
-
s.files = `git ls-files`.split("\n").reject{|i| i[/^docs\//] }
|
|
18
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
18
|
|
|
20
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
21
19
|
s.require_paths = ['lib']
|
|
22
|
-
s.rubygems_version = '1.8.24'
|
|
23
20
|
|
|
24
21
|
s.add_runtime_dependency 'activesupport'
|
|
25
22
|
s.add_development_dependency 'rdoc'
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sk_api_schema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 11
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 7
|
|
9
|
-
-
|
|
10
|
-
version: 0.7.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.7.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Georg Leciejewski
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2013-04-30 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
type: :runtime
|