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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ccdef1915a82f1b3261b9ebe80bac6876a5048a0
4
- data.tar.gz: 041d1d969e1584d0173a0afc7519bd27c865a7a4
3
+ metadata.gz: 5afb6ba85ef0539c9b01a5b48a78dd224d548e82
4
+ data.tar.gz: 6b4f499b0588adbd974bdf7ee5930b93a23c0c8a
5
5
  SHA512:
6
- metadata.gz: f1f5bf926cc7293853ce0d4adeca581e690bab1b62472f54ebe96726a7cc3cb8a1ee1fdafe991d8e7b93257928bcaa5e7da22ce6a052eefed0a7406be88ef4ee
7
- data.tar.gz: e7b42eed745f4aaa27ec579b64bbe87a6f8719bcf18034a6ed8cf5b0b2aa540dbd7cbea78d80bc5cb8cd1bfe60f78ca25959ab6e5e8743938dd446dcf7dc0740
6
+ metadata.gz: 91edbdf89e833b6f9d2ac570ef18f99d3d660e26e044383355cb219c05f00f0b03976990bb37dee11a6131415aac260c2ceb99fc071e029d4d213e4bb4858471
7
+ data.tar.gz: f34a18cd0bbf09b5ea9b7fdf044e80ee7c8f4aa56c9c432d1f85d3139a4a4efd1573d6e6f10d8c6fb923b6eb3d1d05615c9027a25223730e76e92e7bf23cab9b
@@ -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.for(:sign_in) { |u| u.permit(:login, :password, :remember_me) }
19
- devise_parameter_sanitizer.for(:account_update) { |u|
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
@@ -31,7 +31,6 @@ group :test do
31
31
  end
32
32
 
33
33
  gem 'font-awesome-rails'
34
- gem 'quiet_assets'
35
34
  gem 'jquery-ui-rails'
36
35
 
37
36
  # make content_tag temporarily available
@@ -257,8 +257,8 @@ th {
257
257
  }
258
258
  @font-face {
259
259
  font-family: 'Glyphicons Halflings';
260
- src: url('http://bootstrap-live-customizer.com/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot');
261
- src: url('http://bootstrap-live-customizer.com/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('http://bootstrap-live-customizer.com/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('http://bootstrap-live-customizer.com/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff') format('woff'), url('http://bootstrap-live-customizer.com/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('http://bootstrap-live-customizer.com/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
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;
@@ -1,3 +1,3 @@
1
1
  module R5
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
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.6
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-06-28 00:00:00.000000000 Z
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