jasper-frontend 0.0.8

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: acb1d945d10fa03dbe91cae1ac797b32c7c68d46
4
+ data.tar.gz: 0ba65641411da6491b6a63657ea6e6b1d489e236
5
+ SHA512:
6
+ metadata.gz: a474903f97c7ec632ad34e5466f419fc588afc905939e26dcc291260dd85c918dc572e63b9a4a61e375d1540167d79ed7d0a2f77d89c233da114a95d035b3d44
7
+ data.tar.gz: ece73289ad38fc516e81173ba62803b68563f28cb299c05266f13f0f640ca5d8adf1c139825d4a178729b8645ef587defb3dfcac62bfa2432a06375d2bea0247
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 Frontend
2
+
3
+ Frontend functionality for the Jasper (Video Management System) project.
@@ -0,0 +1,3 @@
1
+ Jasper::Core::Engine.add_routes do
2
+ # TODO: ...
3
+ end
@@ -0,0 +1,11 @@
1
+ require 'jasper_core'
2
+ require 'jasper_api'
3
+ require 'jasper/frontend/engine'
4
+
5
+ module Jasper
6
+ module Frontend
7
+
8
+ # TODO: ...
9
+
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module Jasper
2
+ module Frontend
3
+ class Engine < ::Rails::Engine
4
+ isolate_namespace Jasper
5
+ engine_name 'jasper_frontend'
6
+
7
+ # TODO: ...
8
+
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,19 @@
1
+ module Jasper
2
+ module Frontend
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/frontend/gem_version'
2
+
3
+ module Jasper
4
+ module Frontend
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/frontend'
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jasper-frontend
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: jasper-api
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.0.8
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.0.8
41
+ description: Required dependency for Jasper (Video Management System).
42
+ email: bragin-av@mediarium.com
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - LICENSE
48
+ - README.rdoc
49
+ - config/routes.rb
50
+ - lib/jasper/frontend.rb
51
+ - lib/jasper/frontend/engine.rb
52
+ - lib/jasper/frontend/gem_version.rb
53
+ - lib/jasper/frontend/version.rb
54
+ - lib/jasper_frontend.rb
55
+ homepage: http://jasper-vms.com
56
+ licenses:
57
+ - BSD-3
58
+ metadata: {}
59
+ post_install_message:
60
+ rdoc_options:
61
+ - "--exclude"
62
+ - "."
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: 2.2.1
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.4.5
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: Frontend functionality for the Jasper (Video Management System) project.
81
+ test_files: []