jasper-api 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 467f5462ea28472d2b1ee4786e2e7e7f7fb66172
4
+ data.tar.gz: aa71f2e84c3edace46fed26d915333381e095bb9
5
+ SHA512:
6
+ metadata.gz: 98f6467b0fa09c5468a6dce3bde2a0d90305620c03a2fb9aff10efb3629f9f92f3a201add60d96777302f3017c44a51aa9b8d0b7b16ba57a1f206bcc039b5958
7
+ data.tar.gz: 46b9212773c115a7325e18f2d01a0ad6be194f25a8c0807f806b7f0c9dad4924f5e8a6b0e5fe48505e5f5b263fffbe6fb1bf9447b07685d63fb2f5f5775c30db
data/LICENSE ADDED
@@ -0,0 +1,27 @@
1
+ Copyright (c) 2015, MediariuM Ltd.
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification,
5
+ are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice,
8
+ this list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ 3. Neither the name of the copyright holder nor the names of its contributors
15
+ may be used to endorse or promote products derived from this software
16
+ without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
25
+ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
27
+ OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,3 @@
1
+ = Jasper API
2
+
3
+ The Jasper (Video Management System) API.
@@ -0,0 +1,3 @@
1
+ Jasper::Core::Engine.add_routes do
2
+ # TODO: ...
3
+ end
@@ -0,0 +1,10 @@
1
+ require 'jasper_core'
2
+ require 'jasper/api/engine'
3
+
4
+ module Jasper
5
+ module API
6
+
7
+ # TODO: ...
8
+
9
+ end
10
+ end
@@ -0,0 +1,11 @@
1
+ module Jasper
2
+ module API
3
+ class Engine < Rails::Engine
4
+ isolate_namespace Jasper
5
+ engine_name 'jasper_api'
6
+
7
+ # TODO: ...
8
+
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,19 @@
1
+ module Jasper
2
+ module API
3
+
4
+ # Returns the version of the currently loaded Jasper as a <tt>Gem::Version</tt>
5
+ def self.gem_version
6
+ Gem::Version.new VERSION::STRING
7
+ end
8
+
9
+ module VERSION
10
+ MAJOR = 0
11
+ MINOR = 0
12
+ TINY = 8
13
+ PRE = nil
14
+
15
+ STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
16
+ end
17
+
18
+ end
19
+ end
@@ -0,0 +1,12 @@
1
+ require 'jasper/api/gem_version'
2
+
3
+ module Jasper
4
+ module API
5
+
6
+ # Returns the version of the currently loaded Jasper as a string.
7
+ def self.version
8
+ VERSION::STRING
9
+ end
10
+
11
+ end
12
+ end
@@ -0,0 +1 @@
1
+ require 'jasper/api'
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jasper-api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.8
5
+ platform: ruby
6
+ authors:
7
+ - Alexander Bragin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jasper-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.0.8
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.0.8
27
+ - !ruby/object:Gem::Dependency
28
+ name: rabl
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.11'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: versioncake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.5'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.5'
55
+ description: Required dependency for Jasper (Video Management System).
56
+ email: bragin-av@mediarium.com
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files: []
60
+ files:
61
+ - LICENSE
62
+ - README.rdoc
63
+ - config/routes.rb
64
+ - lib/jasper/api.rb
65
+ - lib/jasper/api/engine.rb
66
+ - lib/jasper/api/gem_version.rb
67
+ - lib/jasper/api/version.rb
68
+ - lib/jasper_api.rb
69
+ homepage: http://jasper-vms.com
70
+ licenses:
71
+ - BSD-3
72
+ metadata: {}
73
+ post_install_message:
74
+ rdoc_options:
75
+ - "--exclude"
76
+ - "."
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 2.2.1
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 2.4.5
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: The Jasper (Video Management System) API.
95
+ test_files: []