base_logic_landing 0.1.5 → 0.1.6
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 +4 -4
- data/lib/app_mate_landing/version.rb +1 -1
- data/lib/app_mate_landing.rb +2 -76
- data/vendor/assets/javascripts/app_mate.js +0 -0
- data/vendor/assets/javascripts/landing/common.js +468 -0
- data/vendor/assets/javascripts/landing/jwplayer/jwplayer.flash.swf +0 -0
- data/vendor/assets/javascripts/landing/jwplayer/jwplayer.html5.js +258 -0
- data/vendor/assets/javascripts/landing/jwplayer/jwplayer.js +138 -0
- data/vendor/assets/javascripts/landing/main.js +669 -0
- data/vendor/assets/javascripts/landing/owl-carousel/owl.carousel.js +1512 -0
- data/vendor/assets/javascripts/landing/owl-carousel/owl.carousel.min.js +47 -0
- data/vendor/assets/javascripts/landing/requirer.js +0 -0
- data/vendor/assets/javascripts/landing/third/detectmobilebrowser.js +7 -0
- data/vendor/assets/javascripts/landing/third/gmaps.js +2149 -0
- data/vendor/assets/javascripts/landing/third/html5shiv.js +301 -0
- data/vendor/assets/javascripts/landing/third/isotope.pkgd.min.js +8 -0
- data/vendor/assets/javascripts/landing/third/jquery.ajaxchimp.min.js +1 -0
- data/vendor/assets/javascripts/landing/third/jquery.counterup.min.js +8 -0
- data/vendor/assets/javascripts/landing/third/jquery.easing.1.3.js +205 -0
- data/vendor/assets/javascripts/landing/third/jquery.fitvids.js +83 -0
- data/vendor/assets/javascripts/landing/third/jquery.nicescroll.min.js +114 -0
- data/vendor/assets/javascripts/landing/third/jquery.stellar.js +660 -0
- data/vendor/assets/javascripts/landing/third/jquery.timeago.js +214 -0
- data/vendor/assets/javascripts/landing/third/jquery.tubular.1.0.js +148 -0
- data/vendor/assets/javascripts/landing/third/matchMedia.js +46 -0
- data/vendor/assets/javascripts/landing/third/owl.carousel.min.js +47 -0
- data/vendor/assets/javascripts/landing/third/tweetie.js +142 -0
- data/vendor/assets/javascripts/landing/third/waypoints.js +8 -0
- data/vendor/assets/javascripts/landing/third/wow.min.js +2 -0
- data/vendor/assets/stylesheets/app_mate.css +0 -0
- data/vendor/assets/stylesheets/landing/app_mate/animate.min.css +6 -0
- data/vendor/assets/stylesheets/landing/app_mate/blog-single.css +657 -0
- data/vendor/assets/stylesheets/landing/app_mate/blog.css +168 -0
- data/vendor/assets/stylesheets/landing/app_mate/bootstrap.css +6358 -0
- data/vendor/assets/stylesheets/landing/app_mate/bootstrap.min.css +10 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color1.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color2.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color3.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color4.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color5.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color6.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color7.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/colors/color8.css +164 -0
- data/vendor/assets/stylesheets/landing/app_mate/font-awesome.min.css +4 -0
- data/vendor/assets/stylesheets/landing/app_mate/fonts.css +75 -0
- data/vendor/assets/stylesheets/landing/app_mate/ionicons.min.css +11 -0
- data/vendor/assets/stylesheets/landing/app_mate/main.css +2500 -0
- data/vendor/assets/stylesheets/landing/app_mate/materialize.min.css +16 -0
- data/vendor/assets/stylesheets/landing/app_mate/responsive.css +856 -0
- data/vendor/assets/stylesheets/landing/owl-carousel/AjaxLoader.gif +0 -0
- data/vendor/assets/stylesheets/landing/owl-carousel/grabbing.png +0 -0
- data/vendor/assets/stylesheets/landing/owl-carousel/owl.carousel.css +71 -0
- data/vendor/assets/stylesheets/landing/owl-carousel/owl.theme.css +79 -0
- data/vendor/assets/stylesheets/landing/owl-carousel/owl.transitions.css +163 -0
- metadata +65 -13
- data/bin/console +0 -14
- data/bin/setup +0 -7
- data/lib/app_mate_landing/engine.rb +0 -11
Binary file
|
Binary file
|
@@ -0,0 +1,71 @@
|
|
1
|
+
/*
|
2
|
+
* Core Owl Carousel CSS File
|
3
|
+
* v1.3.3
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* clearfix */
|
7
|
+
.owl-carousel .owl-wrapper:after {
|
8
|
+
content: ".";
|
9
|
+
display: block;
|
10
|
+
clear: both;
|
11
|
+
visibility: hidden;
|
12
|
+
line-height: 0;
|
13
|
+
height: 0;
|
14
|
+
}
|
15
|
+
/* display none until init */
|
16
|
+
.owl-carousel{
|
17
|
+
display: none;
|
18
|
+
position: relative;
|
19
|
+
width: 100%;
|
20
|
+
-ms-touch-action: pan-y;
|
21
|
+
}
|
22
|
+
.owl-carousel .owl-wrapper{
|
23
|
+
display: none;
|
24
|
+
position: relative;
|
25
|
+
-webkit-transform: translate3d(0px, 0px, 0px);
|
26
|
+
}
|
27
|
+
.owl-carousel .owl-wrapper-outer{
|
28
|
+
overflow: hidden;
|
29
|
+
position: relative;
|
30
|
+
width: 100%;
|
31
|
+
}
|
32
|
+
.owl-carousel .owl-wrapper-outer.autoHeight{
|
33
|
+
-webkit-transition: height 500ms ease-in-out;
|
34
|
+
-moz-transition: height 500ms ease-in-out;
|
35
|
+
-ms-transition: height 500ms ease-in-out;
|
36
|
+
-o-transition: height 500ms ease-in-out;
|
37
|
+
transition: height 500ms ease-in-out;
|
38
|
+
}
|
39
|
+
|
40
|
+
.owl-carousel .owl-item{
|
41
|
+
float: left;
|
42
|
+
}
|
43
|
+
.owl-controls .owl-page,
|
44
|
+
.owl-controls .owl-buttons div{
|
45
|
+
cursor: pointer;
|
46
|
+
}
|
47
|
+
.owl-controls {
|
48
|
+
-webkit-user-select: none;
|
49
|
+
-khtml-user-select: none;
|
50
|
+
-moz-user-select: none;
|
51
|
+
-ms-user-select: none;
|
52
|
+
user-select: none;
|
53
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
54
|
+
}
|
55
|
+
|
56
|
+
/* mouse grab icon */
|
57
|
+
.grabbing {
|
58
|
+
cursor:url(grabbing.png) 8 8, move;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* fix */
|
62
|
+
.owl-carousel .owl-wrapper,
|
63
|
+
.owl-carousel .owl-item{
|
64
|
+
-webkit-backface-visibility: hidden;
|
65
|
+
-moz-backface-visibility: hidden;
|
66
|
+
-ms-backface-visibility: hidden;
|
67
|
+
-webkit-transform: translate3d(0,0,0);
|
68
|
+
-moz-transform: translate3d(0,0,0);
|
69
|
+
-ms-transform: translate3d(0,0,0);
|
70
|
+
}
|
71
|
+
|
@@ -0,0 +1,79 @@
|
|
1
|
+
/*
|
2
|
+
* Owl Carousel Owl Demo Theme
|
3
|
+
* v1.3.3
|
4
|
+
*/
|
5
|
+
|
6
|
+
.owl-theme .owl-controls{
|
7
|
+
margin-top: 10px;
|
8
|
+
text-align: center;
|
9
|
+
}
|
10
|
+
|
11
|
+
/* Styling Next and Prev buttons */
|
12
|
+
|
13
|
+
.owl-theme .owl-controls .owl-buttons div{
|
14
|
+
color: #FFF;
|
15
|
+
display: inline-block;
|
16
|
+
zoom: 1;
|
17
|
+
*display: inline;/*IE7 life-saver */
|
18
|
+
margin: 5px;
|
19
|
+
padding: 3px 10px;
|
20
|
+
font-size: 12px;
|
21
|
+
-webkit-border-radius: 30px;
|
22
|
+
-moz-border-radius: 30px;
|
23
|
+
border-radius: 30px;
|
24
|
+
background: #869791;
|
25
|
+
filter: Alpha(Opacity=50);/*IE7 fix*/
|
26
|
+
opacity: 0.5;
|
27
|
+
}
|
28
|
+
/* Clickable class fix problem with hover on touch devices */
|
29
|
+
/* Use it for non-touch hover action */
|
30
|
+
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
|
31
|
+
filter: Alpha(Opacity=100);/*IE7 fix*/
|
32
|
+
opacity: 1;
|
33
|
+
text-decoration: none;
|
34
|
+
}
|
35
|
+
|
36
|
+
/* Styling Pagination*/
|
37
|
+
|
38
|
+
.owl-theme .owl-controls .owl-page{
|
39
|
+
display: inline-block;
|
40
|
+
zoom: 1;
|
41
|
+
*display: inline;/*IE7 life-saver */
|
42
|
+
}
|
43
|
+
.owl-theme .owl-controls .owl-page span{
|
44
|
+
display: block;
|
45
|
+
width: 12px;
|
46
|
+
height: 12px;
|
47
|
+
margin: 5px 7px;
|
48
|
+
filter: Alpha(Opacity=50);/*IE7 fix*/
|
49
|
+
opacity: 0.5;
|
50
|
+
-webkit-border-radius: 20px;
|
51
|
+
-moz-border-radius: 20px;
|
52
|
+
border-radius: 20px;
|
53
|
+
background: #869791;
|
54
|
+
}
|
55
|
+
|
56
|
+
.owl-theme .owl-controls .owl-page.active span,
|
57
|
+
.owl-theme .owl-controls.clickable .owl-page:hover span{
|
58
|
+
filter: Alpha(Opacity=100);/*IE7 fix*/
|
59
|
+
opacity: 1;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* If PaginationNumbers is true */
|
63
|
+
|
64
|
+
.owl-theme .owl-controls .owl-page span.owl-numbers{
|
65
|
+
height: auto;
|
66
|
+
width: auto;
|
67
|
+
color: #FFF;
|
68
|
+
padding: 2px 10px;
|
69
|
+
font-size: 12px;
|
70
|
+
-webkit-border-radius: 30px;
|
71
|
+
-moz-border-radius: 30px;
|
72
|
+
border-radius: 30px;
|
73
|
+
}
|
74
|
+
|
75
|
+
/* preloading images */
|
76
|
+
.owl-item.loading{
|
77
|
+
min-height: 150px;
|
78
|
+
background: url(AjaxLoader.gif) no-repeat center center
|
79
|
+
}
|
@@ -0,0 +1,163 @@
|
|
1
|
+
/*
|
2
|
+
* Owl Carousel CSS3 Transitions
|
3
|
+
* v1.3.2
|
4
|
+
*/
|
5
|
+
|
6
|
+
.owl-origin {
|
7
|
+
-webkit-perspective: 1200px;
|
8
|
+
-webkit-perspective-origin-x : 50%;
|
9
|
+
-webkit-perspective-origin-y : 50%;
|
10
|
+
-moz-perspective : 1200px;
|
11
|
+
-moz-perspective-origin-x : 50%;
|
12
|
+
-moz-perspective-origin-y : 50%;
|
13
|
+
perspective : 1200px;
|
14
|
+
}
|
15
|
+
/* fade */
|
16
|
+
.owl-fade-out {
|
17
|
+
z-index: 10;
|
18
|
+
-webkit-animation: fadeOut .7s both ease;
|
19
|
+
-moz-animation: fadeOut .7s both ease;
|
20
|
+
animation: fadeOut .7s both ease;
|
21
|
+
}
|
22
|
+
.owl-fade-in {
|
23
|
+
-webkit-animation: fadeIn .7s both ease;
|
24
|
+
-moz-animation: fadeIn .7s both ease;
|
25
|
+
animation: fadeIn .7s both ease;
|
26
|
+
}
|
27
|
+
/* backSlide */
|
28
|
+
.owl-backSlide-out {
|
29
|
+
-webkit-animation: backSlideOut 1s both ease;
|
30
|
+
-moz-animation: backSlideOut 1s both ease;
|
31
|
+
animation: backSlideOut 1s both ease;
|
32
|
+
}
|
33
|
+
.owl-backSlide-in {
|
34
|
+
-webkit-animation: backSlideIn 1s both ease;
|
35
|
+
-moz-animation: backSlideIn 1s both ease;
|
36
|
+
animation: backSlideIn 1s both ease;
|
37
|
+
}
|
38
|
+
/* goDown */
|
39
|
+
.owl-goDown-out {
|
40
|
+
-webkit-animation: scaleToFade .7s ease both;
|
41
|
+
-moz-animation: scaleToFade .7s ease both;
|
42
|
+
animation: scaleToFade .7s ease both;
|
43
|
+
}
|
44
|
+
.owl-goDown-in {
|
45
|
+
-webkit-animation: goDown .6s ease both;
|
46
|
+
-moz-animation: goDown .6s ease both;
|
47
|
+
animation: goDown .6s ease both;
|
48
|
+
}
|
49
|
+
/* scaleUp */
|
50
|
+
.owl-fadeUp-in {
|
51
|
+
-webkit-animation: scaleUpFrom .5s ease both;
|
52
|
+
-moz-animation: scaleUpFrom .5s ease both;
|
53
|
+
animation: scaleUpFrom .5s ease both;
|
54
|
+
}
|
55
|
+
|
56
|
+
.owl-fadeUp-out {
|
57
|
+
-webkit-animation: scaleUpTo .5s ease both;
|
58
|
+
-moz-animation: scaleUpTo .5s ease both;
|
59
|
+
animation: scaleUpTo .5s ease both;
|
60
|
+
}
|
61
|
+
/* Keyframes */
|
62
|
+
/*empty*/
|
63
|
+
@-webkit-keyframes empty {
|
64
|
+
0% {opacity: 1}
|
65
|
+
}
|
66
|
+
@-moz-keyframes empty {
|
67
|
+
0% {opacity: 1}
|
68
|
+
}
|
69
|
+
@keyframes empty {
|
70
|
+
0% {opacity: 1}
|
71
|
+
}
|
72
|
+
@-webkit-keyframes fadeIn {
|
73
|
+
0% { opacity:0; }
|
74
|
+
100% { opacity:1; }
|
75
|
+
}
|
76
|
+
@-moz-keyframes fadeIn {
|
77
|
+
0% { opacity:0; }
|
78
|
+
100% { opacity:1; }
|
79
|
+
}
|
80
|
+
@keyframes fadeIn {
|
81
|
+
0% { opacity:0; }
|
82
|
+
100% { opacity:1; }
|
83
|
+
}
|
84
|
+
@-webkit-keyframes fadeOut {
|
85
|
+
0% { opacity:1; }
|
86
|
+
100% { opacity:0; }
|
87
|
+
}
|
88
|
+
@-moz-keyframes fadeOut {
|
89
|
+
0% { opacity:1; }
|
90
|
+
100% { opacity:0; }
|
91
|
+
}
|
92
|
+
@keyframes fadeOut {
|
93
|
+
0% { opacity:1; }
|
94
|
+
100% { opacity:0; }
|
95
|
+
}
|
96
|
+
@-webkit-keyframes backSlideOut {
|
97
|
+
25% { opacity: .5; -webkit-transform: translateZ(-500px); }
|
98
|
+
75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
|
99
|
+
100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
|
100
|
+
}
|
101
|
+
@-moz-keyframes backSlideOut {
|
102
|
+
25% { opacity: .5; -moz-transform: translateZ(-500px); }
|
103
|
+
75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
|
104
|
+
100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
|
105
|
+
}
|
106
|
+
@keyframes backSlideOut {
|
107
|
+
25% { opacity: .5; transform: translateZ(-500px); }
|
108
|
+
75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
|
109
|
+
100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
|
110
|
+
}
|
111
|
+
@-webkit-keyframes backSlideIn {
|
112
|
+
0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
|
113
|
+
75% { opacity: .5; -webkit-transform: translateZ(-500px); }
|
114
|
+
100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
|
115
|
+
}
|
116
|
+
@-moz-keyframes backSlideIn {
|
117
|
+
0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
|
118
|
+
75% { opacity: .5; -moz-transform: translateZ(-500px); }
|
119
|
+
100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
|
120
|
+
}
|
121
|
+
@keyframes backSlideIn {
|
122
|
+
0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
|
123
|
+
75% { opacity: .5; transform: translateZ(-500px); }
|
124
|
+
100% { opacity: 1; transform: translateZ(0) translateX(0); }
|
125
|
+
}
|
126
|
+
@-webkit-keyframes scaleToFade {
|
127
|
+
to { opacity: 0; -webkit-transform: scale(.8); }
|
128
|
+
}
|
129
|
+
@-moz-keyframes scaleToFade {
|
130
|
+
to { opacity: 0; -moz-transform: scale(.8); }
|
131
|
+
}
|
132
|
+
@keyframes scaleToFade {
|
133
|
+
to { opacity: 0; transform: scale(.8); }
|
134
|
+
}
|
135
|
+
@-webkit-keyframes goDown {
|
136
|
+
from { -webkit-transform: translateY(-100%); }
|
137
|
+
}
|
138
|
+
@-moz-keyframes goDown {
|
139
|
+
from { -moz-transform: translateY(-100%); }
|
140
|
+
}
|
141
|
+
@keyframes goDown {
|
142
|
+
from { transform: translateY(-100%); }
|
143
|
+
}
|
144
|
+
|
145
|
+
@-webkit-keyframes scaleUpFrom {
|
146
|
+
from { opacity: 0; -webkit-transform: scale(1.5); }
|
147
|
+
}
|
148
|
+
@-moz-keyframes scaleUpFrom {
|
149
|
+
from { opacity: 0; -moz-transform: scale(1.5); }
|
150
|
+
}
|
151
|
+
@keyframes scaleUpFrom {
|
152
|
+
from { opacity: 0; transform: scale(1.5); }
|
153
|
+
}
|
154
|
+
|
155
|
+
@-webkit-keyframes scaleUpTo {
|
156
|
+
to { opacity: 0; -webkit-transform: scale(1.5); }
|
157
|
+
}
|
158
|
+
@-moz-keyframes scaleUpTo {
|
159
|
+
to { opacity: 0; -moz-transform: scale(1.5); }
|
160
|
+
}
|
161
|
+
@keyframes scaleUpTo {
|
162
|
+
to { opacity: 0; transform: scale(1.5); }
|
163
|
+
}
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: base_logic_landing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilton Garcia dos Santos Silveira
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2015-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -39,34 +39,86 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: railties
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.1'
|
48
|
+
- - "<"
|
46
49
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
50
|
+
version: '5.0'
|
48
51
|
type: :runtime
|
49
52
|
prerelease: false
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
52
|
-
- - "
|
55
|
+
- - ">"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '3.1'
|
58
|
+
- - "<"
|
53
59
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
60
|
+
version: '5.0'
|
55
61
|
description: Write a longer description or delete this line
|
56
62
|
email:
|
57
63
|
- ilton@baseltda.com.br
|
58
|
-
executables:
|
59
|
-
- console
|
60
|
-
- setup
|
64
|
+
executables: []
|
61
65
|
extensions: []
|
62
66
|
extra_rdoc_files: []
|
63
67
|
files:
|
64
68
|
- README.md
|
65
|
-
- bin/console
|
66
|
-
- bin/setup
|
67
69
|
- lib/app_mate_landing.rb
|
68
|
-
- lib/app_mate_landing/engine.rb
|
69
70
|
- lib/app_mate_landing/version.rb
|
71
|
+
- vendor/assets/javascripts/app_mate.js
|
72
|
+
- vendor/assets/javascripts/landing/common.js
|
73
|
+
- vendor/assets/javascripts/landing/jwplayer/jwplayer.flash.swf
|
74
|
+
- vendor/assets/javascripts/landing/jwplayer/jwplayer.html5.js
|
75
|
+
- vendor/assets/javascripts/landing/jwplayer/jwplayer.js
|
76
|
+
- vendor/assets/javascripts/landing/main.js
|
77
|
+
- vendor/assets/javascripts/landing/owl-carousel/owl.carousel.js
|
78
|
+
- vendor/assets/javascripts/landing/owl-carousel/owl.carousel.min.js
|
79
|
+
- vendor/assets/javascripts/landing/requirer.js
|
80
|
+
- vendor/assets/javascripts/landing/third/detectmobilebrowser.js
|
81
|
+
- vendor/assets/javascripts/landing/third/gmaps.js
|
82
|
+
- vendor/assets/javascripts/landing/third/html5shiv.js
|
83
|
+
- vendor/assets/javascripts/landing/third/isotope.pkgd.min.js
|
84
|
+
- vendor/assets/javascripts/landing/third/jquery.ajaxchimp.min.js
|
85
|
+
- vendor/assets/javascripts/landing/third/jquery.counterup.min.js
|
86
|
+
- vendor/assets/javascripts/landing/third/jquery.easing.1.3.js
|
87
|
+
- vendor/assets/javascripts/landing/third/jquery.fitvids.js
|
88
|
+
- vendor/assets/javascripts/landing/third/jquery.nicescroll.min.js
|
89
|
+
- vendor/assets/javascripts/landing/third/jquery.stellar.js
|
90
|
+
- vendor/assets/javascripts/landing/third/jquery.timeago.js
|
91
|
+
- vendor/assets/javascripts/landing/third/jquery.tubular.1.0.js
|
92
|
+
- vendor/assets/javascripts/landing/third/matchMedia.js
|
93
|
+
- vendor/assets/javascripts/landing/third/owl.carousel.min.js
|
94
|
+
- vendor/assets/javascripts/landing/third/tweetie.js
|
95
|
+
- vendor/assets/javascripts/landing/third/waypoints.js
|
96
|
+
- vendor/assets/javascripts/landing/third/wow.min.js
|
97
|
+
- vendor/assets/stylesheets/app_mate.css
|
98
|
+
- vendor/assets/stylesheets/landing/app_mate/animate.min.css
|
99
|
+
- vendor/assets/stylesheets/landing/app_mate/blog-single.css
|
100
|
+
- vendor/assets/stylesheets/landing/app_mate/blog.css
|
101
|
+
- vendor/assets/stylesheets/landing/app_mate/bootstrap.css
|
102
|
+
- vendor/assets/stylesheets/landing/app_mate/bootstrap.min.css
|
103
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color1.css
|
104
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color2.css
|
105
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color3.css
|
106
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color4.css
|
107
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color5.css
|
108
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color6.css
|
109
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color7.css
|
110
|
+
- vendor/assets/stylesheets/landing/app_mate/colors/color8.css
|
111
|
+
- vendor/assets/stylesheets/landing/app_mate/font-awesome.min.css
|
112
|
+
- vendor/assets/stylesheets/landing/app_mate/fonts.css
|
113
|
+
- vendor/assets/stylesheets/landing/app_mate/ionicons.min.css
|
114
|
+
- vendor/assets/stylesheets/landing/app_mate/main.css
|
115
|
+
- vendor/assets/stylesheets/landing/app_mate/materialize.min.css
|
116
|
+
- vendor/assets/stylesheets/landing/app_mate/responsive.css
|
117
|
+
- vendor/assets/stylesheets/landing/owl-carousel/AjaxLoader.gif
|
118
|
+
- vendor/assets/stylesheets/landing/owl-carousel/grabbing.png
|
119
|
+
- vendor/assets/stylesheets/landing/owl-carousel/owl.carousel.css
|
120
|
+
- vendor/assets/stylesheets/landing/owl-carousel/owl.theme.css
|
121
|
+
- vendor/assets/stylesheets/landing/owl-carousel/owl.transitions.css
|
70
122
|
homepage: http://baseltda.com.br
|
71
123
|
licenses:
|
72
124
|
- GNU
|
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "app_mate_landing"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start
|
data/bin/setup
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
module AppMateLanding
|
2
|
-
module Sass
|
3
|
-
class Engine < ::Rails::Engine
|
4
|
-
initializer 'materialize-sass.assets.precompile' do |app|
|
5
|
-
%w(stylesheets javascripts fonts images).each do |sub|
|
6
|
-
app.config.assets.paths << root.join('app/assets', sub).to_s
|
7
|
-
end
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|