rearview 1.0.0.rc5-jruby → 1.0.1-jruby
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -4
- data/app/views/devise/sessions/new.html.erb +19 -14
- data/app/views/layouts/devise/sessions.html.erb +8 -0
- data/lib/generators/templates/rearview.rb +3 -1
- data/lib/rearview/version.rb +1 -1
- data/public/rearview-src/less/login.less +6 -6
- data/public/rearview/less/login.less +6 -6
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11f5ed24ea14952ae2f7770322e560c13cfde25e
|
4
|
+
data.tar.gz: 9519f92f824f2f694605123f3157551db1c659fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d17a034492548ae74b58afed3311a1796a6acf7fe0ad7c806ad679ec62a6171ec15c778204761b47bcff57fca562e467127de1592cc71dbd8b699b567edde4c
|
7
|
+
data.tar.gz: 370232272bd01bdf532e0944b0c7398b6b1d960813e774e946bc5c6e1959c2ef3e79a385a01ddc454b8e7ac34f806c6af62a0efcb0cc05f49cafd896ed84e7e3
|
data/README.md
CHANGED
@@ -1,5 +1 @@
|
|
1
1
|
Rails engine for ![rearview](http://github.com/livingsocial/rearview). This project is for rearview developers only. For users please go to ![rearview](http://github.com/livingsocial/rearview) project for installation, configuration, and other details.
|
2
|
-
|
3
|
-
# Development
|
4
|
-
|
5
|
-
TODO
|
@@ -1,16 +1,21 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
<div
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
1
|
+
<form class="form-horizontal" method="post" action="<%= session_path(:user) %>">
|
2
|
+
<div class="control-group">
|
3
|
+
<label class="control-label" for="inputEmail">Email</label>
|
4
|
+
<div class="controls">
|
5
|
+
<input type="text" id="inputEmail" placeholder="Email" name="user[email]" autofocus="autofocus">
|
6
|
+
</div>
|
7
|
+
</div>
|
8
|
+
<div class="control-group">
|
9
|
+
<label class="control-label" for="inputPassword">Password</label>
|
10
|
+
<div class="controls">
|
11
|
+
<input type="password" id="inputPassword" placeholder="Password" name="user[password]">
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
<div class="control-group">
|
15
|
+
<div class="controls">
|
16
|
+
<button type="submit" class="btn">Sign in</button>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</form>
|
15
20
|
|
16
21
|
<%# <%= render "devise/shared/links" %>
|
@@ -12,6 +12,14 @@
|
|
12
12
|
<%= rearview_link_tag('/login/icons/icons/tools/rearview.svg',rel: 'apple-touch-icon', type: 'image/png') %>
|
13
13
|
<%= rearview_link_tag('/less/login.less',rel: 'stylesheet/less', type: 'text/css') %>
|
14
14
|
<%= javascript_include_tag(rearview_static_path('/vendor/less/js/less.js'),type: 'text/javascript') %>
|
15
|
+
<style>
|
16
|
+
.control-group .control-label {
|
17
|
+
width: 120px;
|
18
|
+
}
|
19
|
+
.control-group .controls {
|
20
|
+
margin-left: 135px;
|
21
|
+
}
|
22
|
+
</style>
|
15
23
|
</head>
|
16
24
|
<body class='login rearview'>
|
17
25
|
<!--[if lt IE 8]><p class=chromeframe>Your browser is <em>ancient!</em> <a href='http://browsehappy.com/'>Upgrade to a different browser</a> or <a href='http://www.google.com/chromeframe/?redirect=true'>install Google Chrome Frame</a> to experience this site.</p><![endif]-->
|
@@ -15,12 +15,14 @@ Rearview.configure do |config|
|
|
15
15
|
# period the monitor script will be terminated.
|
16
16
|
config.sandbox_timeout = 10
|
17
17
|
|
18
|
-
#
|
18
|
+
# The url to your graphite web server
|
19
19
|
# ex:
|
20
20
|
# config.graphite_url="http://graphite.mycompany.com"
|
21
21
|
config.graphite_url = nil
|
22
22
|
|
23
23
|
# This is the email from: address used when sending alerts
|
24
|
+
# ex:
|
25
|
+
# config.default_from = "rearview@mycompany.com"
|
24
26
|
config.default_from = "rearview@localhost"
|
25
27
|
|
26
28
|
case Rails.env
|
data/lib/rearview/version.rb
CHANGED
@@ -393,11 +393,11 @@ table {
|
|
393
393
|
========================================================================== */
|
394
394
|
/* boilerplate */
|
395
395
|
* {
|
396
|
-
-webkit-box-sizing: border-box;
|
397
|
-
-moz-box-sizing: border-box;
|
396
|
+
/* -webkit-box-sizing: border-box; */
|
397
|
+
/* -moz-box-sizing: border-box; */
|
398
398
|
-ms-box-sizing: border-box;
|
399
399
|
-o-box-sizing: border-box;
|
400
|
-
box-sizing: border-box;
|
400
|
+
/* box-sizing: border-box; */
|
401
401
|
background-repeat: no-repeat;
|
402
402
|
-webkit-font-smoothing: subpixel-antialiased;
|
403
403
|
}
|
@@ -569,8 +569,8 @@ section.login-info {
|
|
569
569
|
position: absolute;
|
570
570
|
left: 50%;
|
571
571
|
top: 50%;
|
572
|
-
text-align: center;
|
573
|
-
width: 400px;
|
572
|
+
/* text-align: center; */
|
573
|
+
/* width: 400px; */
|
574
574
|
|
575
575
|
h1 {
|
576
576
|
line-height : 36px;
|
@@ -579,7 +579,7 @@ section.login-info {
|
|
579
579
|
}
|
580
580
|
|
581
581
|
h2 {
|
582
|
-
text-transform : uppercase;
|
582
|
+
text-transform : uppercase;
|
583
583
|
.proxima-regular();
|
584
584
|
}
|
585
585
|
}
|
@@ -393,11 +393,11 @@ table {
|
|
393
393
|
========================================================================== */
|
394
394
|
/* boilerplate */
|
395
395
|
* {
|
396
|
-
-webkit-box-sizing: border-box;
|
397
|
-
-moz-box-sizing: border-box;
|
396
|
+
/* -webkit-box-sizing: border-box; */
|
397
|
+
/* -moz-box-sizing: border-box; */
|
398
398
|
-ms-box-sizing: border-box;
|
399
399
|
-o-box-sizing: border-box;
|
400
|
-
box-sizing: border-box;
|
400
|
+
/* box-sizing: border-box; */
|
401
401
|
background-repeat: no-repeat;
|
402
402
|
-webkit-font-smoothing: subpixel-antialiased;
|
403
403
|
}
|
@@ -569,8 +569,8 @@ section.login-info {
|
|
569
569
|
position: absolute;
|
570
570
|
left: 50%;
|
571
571
|
top: 50%;
|
572
|
-
text-align: center;
|
573
|
-
width: 400px;
|
572
|
+
/* text-align: center; */
|
573
|
+
/* width: 400px; */
|
574
574
|
|
575
575
|
h1 {
|
576
576
|
line-height : 36px;
|
@@ -579,7 +579,7 @@ section.login-info {
|
|
579
579
|
}
|
580
580
|
|
581
581
|
h2 {
|
582
|
-
text-transform : uppercase;
|
582
|
+
text-transform : uppercase;
|
583
583
|
.proxima-regular();
|
584
584
|
}
|
585
585
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rearview
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: jruby
|
6
6
|
authors:
|
7
7
|
- Trent Albright
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -2248,9 +2248,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
2248
2248
|
version: 1.9.3
|
2249
2249
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
2250
2250
|
requirements:
|
2251
|
-
- - '
|
2251
|
+
- - '>='
|
2252
2252
|
- !ruby/object:Gem::Version
|
2253
|
-
version:
|
2253
|
+
version: '0'
|
2254
2254
|
requirements: []
|
2255
2255
|
rubyforge_project:
|
2256
2256
|
rubygems_version: 2.1.5
|