rollex 1.0.0.pre.rc.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1ad0f0ba1285add1c1bcdb04414f9c579e39e2bc
4
+ data.tar.gz: fda8553769da16f94746c9487e7e51f5cead2b6b
5
+ SHA512:
6
+ metadata.gz: 739a58c7a5071664bd69e939c14e87d240cde02993c59219ee05b60ffc2356b4b15283a27ab4cc6036a9a143afb4c2a03a7892512442490fad92add2e1ad852b
7
+ data.tar.gz: 06bd190f50d87db53705476f139359dc5c4f6537c433135b8e9c24171f2119f1028a40ee2d484babb809eb3bedd3f4be3a00848c53e7a839770cc199edf7f374
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Alexander Komarov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Rollex
2
+
3
+ TBD
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+ module Rollex
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+ module Rollex
3
+ module Rails
4
+ VERSION = "1.0.0-rc.1"
5
+ end
6
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+ require "rollex/rails/engine"
3
+ require "rollex/rails/version"
4
+
5
+ module Rollex
6
+ module Rails
7
+ end
8
+ end
data/lib/rollex.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+ require "rollex/rails"
3
+
4
+ module Rollex
5
+ end