r5 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/r5/recipes/devise.rb +2 -4
- data/lib/r5/recipes/gemfile.rb +0 -1
- data/lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/lib/r5/template/app/assets/stylesheets/theme.css +2 -2
- data/lib/r5/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5afb6ba85ef0539c9b01a5b48a78dd224d548e82
|
4
|
+
data.tar.gz: 6b4f499b0588adbd974bdf7ee5930b93a23c0c8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91edbdf89e833b6f9d2ac570ef18f99d3d660e26e044383355cb219c05f00f0b03976990bb37dee11a6131415aac260c2ceb99fc071e029d4d213e4bb4858471
|
7
|
+
data.tar.gz: f34a18cd0bbf09b5ea9b7fdf044e80ee7c8f4aa56c9c432d1f85d3139a4a4efd1573d6e6f10d8c6fb923b6eb3d1d05615c9027a25223730e76e92e7bf23cab9b
|
data/lib/r5/recipes/devise.rb
CHANGED
@@ -15,10 +15,8 @@ insert_into_file "#{@project_path}/app/controllers/application_controller.rb",
|
|
15
15
|
protected
|
16
16
|
|
17
17
|
def configure_permitted_parameters
|
18
|
-
devise_parameter_sanitizer.
|
19
|
-
devise_parameter_sanitizer.
|
20
|
-
u.permit(:password, :password_confirmation, :current_password)
|
21
|
-
}
|
18
|
+
devise_parameter_sanitizer.permit(:sign_in, keys: [:login, :password, :remember_me])
|
19
|
+
devise_parameter_sanitizer.permit(:account_update, keys: [:password, :password_confirmation, :current_password])
|
22
20
|
end
|
23
21
|
|
24
22
|
def only_for_user
|
data/lib/r5/recipes/gemfile.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -257,8 +257,8 @@ th {
|
|
257
257
|
}
|
258
258
|
@font-face {
|
259
259
|
font-family: 'Glyphicons Halflings';
|
260
|
-
src: url('
|
261
|
-
src: url('
|
260
|
+
src: url('glyphicons-halflings-regular.eot');
|
261
|
+
src: url('glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('glyphicons-halflings-regular.woff2') format('woff2'), url('glyphicons-halflings-regular.woff') format('woff'), url('glyphicons-halflings-regular.ttf') format('truetype'), url('glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
262
262
|
}
|
263
263
|
.glyphicon {
|
264
264
|
position: relative;
|
data/lib/r5/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: r5
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mousse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -89,6 +89,10 @@ files:
|
|
89
89
|
- lib/r5/recipes/xlsx_support.rb
|
90
90
|
- lib/r5/starter.rb
|
91
91
|
- lib/r5/template/.ruby-version
|
92
|
+
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.eot
|
93
|
+
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.ttf
|
94
|
+
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.woff
|
95
|
+
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.woff2
|
92
96
|
- lib/r5/template/app/assets/javascripts/main.js.rb
|
93
97
|
- lib/r5/template/app/assets/stylesheets/custom.css.scss
|
94
98
|
- lib/r5/template/app/assets/stylesheets/main.css.scss
|