oxen 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb4373df739e084694fb46808a512310cf6d7e6c83fc349b050b33ae7db1abde
4
- data.tar.gz: c9287372949d209efc261b35f1d6e655998b6e65175edb67753fb094e8da7f70
3
+ metadata.gz: 5dd0032a446eb5edac1f6506a1370eaed01b2532a4e927aff9ce5e7df51ca20e
4
+ data.tar.gz: b39b9f1e3decc5db7a75cf8f0190df1820313e76df77f5a5fdbca340aae562fa
5
5
  SHA512:
6
- metadata.gz: 81a0b8447c61a42af6fa9aa2ee5764be432ef0633ffa21090fe1369121d94ceb4850b1710833577fd636619892a161a1235339706173ede10ffa32d6407e3ff9
7
- data.tar.gz: e9c93a2f17e243135136059e92ebcccde2d6c7b3430566f29cabe808bb0fc0dd7f9b58a0f37ce5f3aedf8d4a3081bf84a2fb5549593fbd6aa997ca05205c6178
6
+ metadata.gz: 0aca02fb50019fec3f898f005ba3e86d36810b6845d3975f39a9c1e9d453770eb0182bcd7e317ba4e8c08e19f8d85831cb8e78c3e20cae6d9a55b18734c099de
7
+ data.tar.gz: d0ea1dfd23d4a30435649207e7a966078ca8a87746aae242f8977138ab84f23dfb61216225c98f6234eb425aee6594ba3a87c43fee6989d9c95425584b52dcbc
@@ -10,7 +10,3 @@
10
10
  // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
- //= require jquery
14
- //= require jquery_ujs
15
- //= require bootstrap-sprockets
16
- //= require_tree .
@@ -2,5 +2,3 @@
2
2
  *= require_tree .
3
3
  *= require_self
4
4
  */
5
- @import "bootstrap-sprockets";
6
- @import "bootstrap";
data/lib/oxen/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oxen
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - zxy
@@ -23,11 +23,8 @@ files:
23
23
  - README.md
24
24
  - Rakefile
25
25
  - app/assets/config/oxen_manifest.js
26
- - app/assets/javascripts/oxen/accounts.js
27
26
  - app/assets/javascripts/oxen/application.js
28
- - app/assets/stylesheets/oxen/accounts.css
29
27
  - app/assets/stylesheets/oxen/application.scss
30
- - app/assets/stylesheets/scaffold.css
31
28
  - app/controllers/oxen/accounts_controller.rb
32
29
  - app/controllers/oxen/application_controller.rb
33
30
  - app/controllers/oxen/auth_controller.rb
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,80 +0,0 @@
1
- body {
2
- background-color: #fff;
3
- color: #333;
4
- margin: 33px;
5
- }
6
-
7
- body, p, ol, ul, td {
8
- font-family: verdana, arial, helvetica, sans-serif;
9
- font-size: 13px;
10
- line-height: 18px;
11
- }
12
-
13
- pre {
14
- background-color: #eee;
15
- padding: 10px;
16
- font-size: 11px;
17
- }
18
-
19
- a {
20
- color: #000;
21
- }
22
-
23
- a:visited {
24
- color: #666;
25
- }
26
-
27
- a:hover {
28
- color: #fff;
29
- background-color: #000;
30
- }
31
-
32
- th {
33
- padding-bottom: 5px;
34
- }
35
-
36
- td {
37
- padding: 0 5px 7px;
38
- }
39
-
40
- div.field,
41
- div.actions {
42
- margin-bottom: 10px;
43
- }
44
-
45
- #notice {
46
- color: green;
47
- }
48
-
49
- .field_with_errors {
50
- padding: 2px;
51
- background-color: red;
52
- display: table;
53
- }
54
-
55
- #error_explanation {
56
- width: 450px;
57
- border: 2px solid red;
58
- padding: 7px 7px 0;
59
- margin-bottom: 20px;
60
- background-color: #f0f0f0;
61
- }
62
-
63
- #error_explanation h2 {
64
- text-align: left;
65
- font-weight: bold;
66
- padding: 5px 5px 5px 15px;
67
- font-size: 12px;
68
- margin: -7px -7px 0;
69
- background-color: #c00;
70
- color: #fff;
71
- }
72
-
73
- #error_explanation ul li {
74
- font-size: 12px;
75
- list-style: square;
76
- }
77
-
78
- label {
79
- display: block;
80
- }