bootstrap-honoka-rails 3.3.7 → 3.3.7.2
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/README.md +72 -14
- data/Rakefile +1 -1
- data/VERSIONS.md +10 -0
- data/lib/bootstrap/honoka/rails/version.rb +1 -1
- data/test/dummy/app/assets/javascripts/application.js +2 -2
- data/test/dummy/app/assets/stylesheets/honoka.css +1 -0
- data/test/dummy/app/assets/stylesheets/nico.css +1 -0
- data/test/dummy/app/assets/stylesheets/rin.css +1 -0
- data/test/dummy/app/assets/stylesheets/umi.css +1 -0
- data/test/dummy/app/views/pages/honoka.html.erb +5 -6
- data/test/dummy/app/views/pages/nico.html.erb +8 -9
- data/test/dummy/app/views/pages/umi.html.erb +6 -7
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/config/application.rb +1 -0
- data/test/dummy/config/environments/development.rb +0 -24
- data/test/dummy/config/environments/production.rb +4 -8
- data/test/dummy/production_key_generate.sh +4 -0
- metadata +39 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 499d8b7666d7fbc50b48c56a48bd9f4ac7f9c914d9de81e0afd89409030250f4
|
4
|
+
data.tar.gz: ea5ef2d630a065e8685a8f3bcfd8dec9d747ff2a8082f22dedf7929e9205ed83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d546790c137734793157fd9dd0043c9403c1abdf828f04a46b2ebe7e83e8f7ae86bc91ae4541a01ec76c3e31863a672f52b81b35f341c175c548b991c2272f4
|
7
|
+
data.tar.gz: cbdf460d917eeb8563b540f02a4256daa33a01cb002d71145dd8061cbdd54b6a99324f4dd9ed386212349cd713a13b6e935089a641f6accbe301a748761135fe
|
data/README.md
CHANGED
@@ -4,14 +4,14 @@
|
|
4
4
|
bootstrap-honoka-rails can easily install [Honoka](https://github.com/windyakin/Honoka),[Umi](https://ysakasin.github.io/Umi/) , [Nico](https://nico.kubosho.com/) and [Rin](https://rinhoshizo.la/) on Rails.
|
5
5
|
|
6
6
|
[Honoka](https://github.com/windyakin/Honoka) は日本語も美しく表示できる Bootstrap テーマです。
|
7
|
-
bootstrap-honoka-rails は [
|
7
|
+
bootstrap-honoka-rails は [Honoka](https://github.com/windyakin/Honoka) や [Umi](https://ysakasin.github.io/Umi/) や [Nico](https://nico.kubosho.com/) や [Rin](https://rinhoshizo.la/) を Rails 上に簡単にインストールできます。
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
11
11
|
Add this line to your application's Gemfile:
|
12
12
|
|
13
13
|
```ruby
|
14
|
-
gem 'bootstrap-honoka-rails' , '~>4.3.1'
|
14
|
+
gem 'bootstrap-honoka-rails' , '~>4.3.1' # or '~> 3.3.7'
|
15
15
|
```
|
16
16
|
|
17
17
|
And then execute:
|
@@ -26,52 +26,68 @@ Or install it yourself as:
|
|
26
26
|
gemfile にこれ書いておけばいいと思います。
|
27
27
|
|
28
28
|
```ruby
|
29
|
-
gem 'bootstrap-honoka-rails' , '~>4.3.1'
|
29
|
+
gem 'bootstrap-honoka-rails' , '~>4.3.1' # or '~> 3.3.7'
|
30
30
|
```
|
31
31
|
|
32
32
|
## Usage
|
33
33
|
|
34
|
-
Add to application.css
|
34
|
+
Add to application.css `*= require _honoka` <br>
|
35
|
+
For bootstrap ver3 you need `*= _bootstrap-sprockets`.
|
35
36
|
|
36
|
-
```app/assets/stylesheets/application.css
|
37
|
+
```css app/assets/stylesheets/application.css
|
38
|
+
/*
|
39
|
+
*= require _bootstrap-sprockets # Add line ※ v3 only
|
37
40
|
*= require _honoka # Add line
|
38
41
|
*= require_self
|
42
|
+
*/
|
39
43
|
```
|
40
44
|
|
41
|
-
and add to application.js
|
45
|
+
and add to application.js <br>
|
46
|
+
`//= require popper` (bootstrap ver4 later), <br>
|
47
|
+
`//= require bootstrap-sprockets` , <br>
|
48
|
+
`//= require bootstrap.min`
|
42
49
|
|
43
|
-
```app/assets/javascripts/application.js
|
50
|
+
```js app/assets/javascripts/application.js
|
51
|
+
//= require jquery2
|
44
52
|
//= require rails-ujs
|
45
53
|
//= require activestorage
|
46
|
-
//= require turbolinks
|
47
54
|
//= require popper # add line ※ v4 later
|
48
55
|
//= require bootstrap-sprockets # add line
|
49
|
-
//= require
|
56
|
+
//= require turbolinks
|
50
57
|
//= require_tree .
|
51
58
|
```
|
52
59
|
|
60
|
+
If you loaded `bootstrap-sprockets`, you do not need to load `bootstrap.min` .<br>
|
61
|
+
Because Dropdown features may not work properly.<br>
|
62
|
+
Please check [here](https://github.com/twbs/bootstrap-sass/issues/714) for more details.<br>
|
63
|
+
(It has been tested on production environment. The sample app is in the 'test/dummy' directory. )
|
64
|
+
|
53
65
|
[日本語訳]
|
54
|
-
とりあえずインストール後、上記を application.css と application.js に追加すれば OK
|
66
|
+
とりあえずインストール後、上記を application.css と application.js に追加すれば OK です。<br>
|
67
|
+
注意点として `bootstrap-sprockets` を読み込むと思いますが、その場合 `bootstrap.min` は読み込む必要がありません。<br>
|
68
|
+
何故なら Dropdown が正しく動作しない可能性があります。 <br>
|
69
|
+
詳細は[こちら](https://github.com/twbs/bootstrap-sass/issues/714)をご確認ください。
|
70
|
+
※production 環境で動作することを確認済み。 サンプルアプリは 'test/dummy' ディレクトリ内 にあります。
|
55
71
|
|
56
72
|
---
|
57
73
|
|
58
74
|
Certain [versions](VERSIONS.md) also support Nico , Umi and Rin.
|
59
75
|
|
60
|
-
```app/assets/stylesheets/application.css
|
76
|
+
```css app/assets/stylesheets/application.css
|
61
77
|
*= require _umi # Add line
|
62
78
|
*= require_self
|
63
79
|
```
|
64
80
|
|
65
81
|
or
|
66
82
|
|
67
|
-
```app/assets/stylesheets/application.css
|
83
|
+
```css app/assets/stylesheets/application.css
|
68
84
|
*= require _nico # Add line
|
69
85
|
*= require_self
|
70
86
|
```
|
71
87
|
|
72
88
|
or
|
73
89
|
|
74
|
-
```app/assets/stylesheets/application.css
|
90
|
+
```css app/assets/stylesheets/application.css
|
75
91
|
*= require _rin # Add line
|
76
92
|
*= require_self
|
77
93
|
```
|
@@ -80,7 +96,7 @@ Please check [VERSIONS.md](VERSIONS.md) for Honoka Nico Umi Rin compatible Ver.
|
|
80
96
|
|
81
97
|
[日本語訳][特定のバージョン](VERSIONS.md)では "Nico"と "Umi" と "Rin" も対応しています。
|
82
98
|
`_honoka` の代わりに `*= require _nico` と書けば Nico になりますし、 `_umi` と書けば Umi デザインになります。
|
83
|
-
Rin も Ver によっては `_rin`
|
99
|
+
Rin も Ver によっては `_rin` と書けば対応出来ます。<br>
|
84
100
|
Honoka Nico Umi Rin の対応 Ver は[VERSIONS.md](VERSIONS.md)をご確認ください。
|
85
101
|
|
86
102
|
## Notice
|
@@ -93,3 +109,45 @@ bootstrap-honoka-rails は bootstrap 又は bootstrap-sass を内部的に使っ
|
|
93
109
|
## License
|
94
110
|
|
95
111
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
112
|
+
|
113
|
+
## Use Bootstrap Theme
|
114
|
+
|
115
|
+
#### [Honoka](https://github.com/windyakin/Honoka)
|
116
|
+
|
117
|
+
Source Url ... [https://github.com/windyakin/Honoka](https://github.com/windyakin/Honoka)
|
118
|
+
|
119
|
+
> The MIT License (MIT)
|
120
|
+
>
|
121
|
+
> Copyright (c) 2015 windyakin
|
122
|
+
|
123
|
+
[License View All](https://github.com/windyakin/Honoka/blob/master/LICENSE)
|
124
|
+
|
125
|
+
#### [Umi](https://ysakasin.github.io/Umi/)
|
126
|
+
|
127
|
+
Source Url ... [https://github.com/ysakasin/Umi](https://github.com/ysakasin/Umi)
|
128
|
+
|
129
|
+
> The MIT License (MIT)
|
130
|
+
>
|
131
|
+
> Copyright (c) 2015 ysakasin
|
132
|
+
|
133
|
+
[License View All](https://github.com/ysakasin/Umi/blob/master/LICENSE)
|
134
|
+
|
135
|
+
#### [Nico](https://nico.kubosho.com/)
|
136
|
+
|
137
|
+
Source Url ... [https://github.com/kubosho/Nico](https://github.com/kubosho/Nico)
|
138
|
+
|
139
|
+
> The MIT License (MIT)
|
140
|
+
>
|
141
|
+
> Copyright (c) 2015 windyakin, kubosho
|
142
|
+
|
143
|
+
[License View All](https://github.com/kubosho/Nico/blob/master/LICENSE)
|
144
|
+
|
145
|
+
#### [Rin](https://rinhoshizo.la/)
|
146
|
+
|
147
|
+
Source Url ... [https://github.com/raryosu/Rin](https://github.com/raryosu/Rin)
|
148
|
+
|
149
|
+
> The MIT License (MIT)
|
150
|
+
>
|
151
|
+
> Copyright (c) 2016 Hagihara Ryosuke
|
152
|
+
|
153
|
+
[License View All](https://github.com/raryosu/Rin/blob/master/LICENSE)
|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ require 'rdoc/task'
|
|
8
8
|
|
9
9
|
RDoc::Task.new(:rdoc) do |rdoc|
|
10
10
|
rdoc.rdoc_dir = 'rdoc'
|
11
|
-
rdoc.title = 'Bootstrap::
|
11
|
+
rdoc.title = 'Bootstrap::Honoka::Rails'
|
12
12
|
rdoc.options << '--line-numbers'
|
13
13
|
rdoc.rdoc_files.include('README.md')
|
14
14
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
data/VERSIONS.md
ADDED
@@ -10,8 +10,8 @@
|
|
10
10
|
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
11
|
// about supported directives.
|
12
12
|
//
|
13
|
+
//= require jquery2
|
13
14
|
//= require rails-ujs
|
14
|
-
//= require jquery
|
15
15
|
//= require bootstrap-sprockets
|
16
|
-
//= require
|
16
|
+
//= require turbolinks
|
17
17
|
//= require_tree .
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<!-- テスト用サイト:動作が一致しているか確認する為に下記サイトを完全コピー
|
2
|
-
コピー元 : https://
|
3
|
-
下記テスト用のサイトの著作権は https://
|
2
|
+
コピー元 : https://github.com/windyakin/Honoka/blob/master/docs/v3/bootstrap-ja.html
|
3
|
+
下記テスト用のサイトの著作権は https://github.com/windyakin/Honoka/blob/master/docs/v3/bootstrap-ja.html に帰属します。
|
4
4
|
-->
|
5
5
|
<style type="text/css">
|
6
6
|
body {
|
@@ -52,12 +52,11 @@
|
|
52
52
|
}
|
53
53
|
</style>
|
54
54
|
|
55
|
-
|
56
55
|
<header>
|
57
56
|
<div class="navbar navbar-default navbar-fixed-top">
|
58
57
|
<div class="container">
|
59
58
|
<div class="navbar-header">
|
60
|
-
<a href="/" class="navbar-brand">
|
59
|
+
<a href="/" class="navbar-brand">Honoka</a>
|
61
60
|
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
|
62
61
|
<span class="icon-bar"></span>
|
63
62
|
<span class="icon-bar"></span>
|
@@ -75,7 +74,7 @@
|
|
75
74
|
<li><a href="./bootstrap.html">English Page</a></li>
|
76
75
|
</ul>
|
77
76
|
</li>
|
78
|
-
<li><a href="//github.com/
|
77
|
+
<li><a href="//github.com/windyakin/Honoka/releases">Download</a></li>
|
79
78
|
<li><a href="//github.com/windyakin/Honoka/wiki">Wiki</a></li>
|
80
79
|
</ul>
|
81
80
|
</div>
|
@@ -88,7 +87,7 @@
|
|
88
87
|
<div class="page-header" id="banner">
|
89
88
|
<div class="row">
|
90
89
|
<div class="col-lg-8 col-md-7 col-sm-6">
|
91
|
-
<h1>
|
90
|
+
<h1>Honoka</h1>
|
92
91
|
<p class="lead">日本語も美しく表示できるBootstrapテーマ</p>
|
93
92
|
</div>
|
94
93
|
<div class="col-lg-4 col-md-5 col-sm-6">
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<!-- テスト用サイト:動作が一致しているか確認する為に下記サイトを完全コピー
|
2
|
-
コピー元 : https://
|
3
|
-
下記テスト用のサイトの著作権は https://
|
2
|
+
コピー元 : https://github.com/kubosho/Nico/blob/v3/dist/bootstrap-ja.html
|
3
|
+
下記テスト用のサイトの著作権は https://github.com/kubosho/Nico/blob/v3/dist/bootstrap-ja.html に帰属します。
|
4
4
|
-->
|
5
5
|
<style type="text/css">
|
6
6
|
body {
|
@@ -52,12 +52,11 @@
|
|
52
52
|
}
|
53
53
|
</style>
|
54
54
|
|
55
|
-
|
56
55
|
<header>
|
57
56
|
<div class="navbar navbar-default navbar-fixed-top">
|
58
57
|
<div class="container">
|
59
58
|
<div class="navbar-header">
|
60
|
-
<a href="/" class="navbar-brand">
|
59
|
+
<a href="/" class="navbar-brand">Nico</a>
|
61
60
|
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
|
62
61
|
<span class="icon-bar"></span>
|
63
62
|
<span class="icon-bar"></span>
|
@@ -75,7 +74,7 @@
|
|
75
74
|
<li><a href="./bootstrap.html">English Page</a></li>
|
76
75
|
</ul>
|
77
76
|
</li>
|
78
|
-
<li><a href="//github.com/
|
77
|
+
<li><a href="//github.com/kubosho/Nico/releases">Download</a></li>
|
79
78
|
<li><a href="//github.com/windyakin/Honoka/wiki">Wiki</a></li>
|
80
79
|
</ul>
|
81
80
|
</div>
|
@@ -88,8 +87,8 @@
|
|
88
87
|
<div class="page-header" id="banner">
|
89
88
|
<div class="row">
|
90
89
|
<div class="col-lg-8 col-md-7 col-sm-6">
|
91
|
-
<h1>
|
92
|
-
<p class="lead"
|
90
|
+
<h1>Nico</h1>
|
91
|
+
<p class="lead">Honoka"を元にした、日本語も美しく表示できるBootstrapテーマです。</p>
|
93
92
|
</div>
|
94
93
|
<div class="col-lg-4 col-md-5 col-sm-6">
|
95
94
|
<aside class="panel panel-default">
|
@@ -1067,8 +1066,8 @@
|
|
1067
1066
|
<div class="bs-component">
|
1068
1067
|
<div class="list-group">
|
1069
1068
|
<a href="#" class="list-group-item">
|
1070
|
-
<h4 class="list-group-item-heading"
|
1071
|
-
<p class="list-group-item-text"
|
1069
|
+
<h4 class="list-group-item-heading">矢澤 にこ</h4>
|
1070
|
+
<p class="list-group-item-text">アイドルを目指して日夜励んでいる。「にっこにっこにー」が合い言葉。</p>
|
1072
1071
|
</a>
|
1073
1072
|
<a href="#" class="list-group-item">
|
1074
1073
|
<h4 class="list-group-item-heading">絢瀬 絵里</h4>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<!-- テスト用サイト:動作が一致しているか確認する為に下記サイトを完全コピー
|
2
|
-
コピー元 : https://
|
3
|
-
下記テスト用のサイトの著作権は https://
|
2
|
+
コピー元 : https://github.com/ysakasin/Umi/blob/v3/docs/bootstrap-ja.html
|
3
|
+
下記テスト用のサイトの著作権は https://github.com/ysakasin/Umi/blob/v3/docs/bootstrap-ja.html に帰属します。
|
4
4
|
-->
|
5
5
|
<style type="text/css">
|
6
6
|
body {
|
@@ -52,12 +52,11 @@
|
|
52
52
|
}
|
53
53
|
</style>
|
54
54
|
|
55
|
-
|
56
55
|
<header>
|
57
56
|
<div class="navbar navbar-default navbar-fixed-top">
|
58
57
|
<div class="container">
|
59
58
|
<div class="navbar-header">
|
60
|
-
<a href="/" class="navbar-brand">
|
59
|
+
<a href="https://nkmr6194.github.io/Umi/" class="navbar-brand">Umi</a>
|
61
60
|
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
|
62
61
|
<span class="icon-bar"></span>
|
63
62
|
<span class="icon-bar"></span>
|
@@ -66,7 +65,7 @@
|
|
66
65
|
</div>
|
67
66
|
<div class="navbar-collapse collapse" id="navbar-main">
|
68
67
|
<ul class="nav navbar-nav">
|
69
|
-
<li><a href="/">Top</a></li>
|
68
|
+
<li><a href="https://nkmr6194.github.io/Umi/">Top</a></li>
|
70
69
|
<li class="dropdown active">
|
71
70
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Demo <span
|
72
71
|
class="caret"></span></a>
|
@@ -75,7 +74,7 @@
|
|
75
74
|
<li><a href="./bootstrap.html">English Page</a></li>
|
76
75
|
</ul>
|
77
76
|
</li>
|
78
|
-
<li><a href="//github.com/
|
77
|
+
<li><a href="//github.com/NKMR6194/Umi/releases">Download</a></li>
|
79
78
|
<li><a href="//github.com/windyakin/Honoka/wiki">Wiki</a></li>
|
80
79
|
</ul>
|
81
80
|
</div>
|
@@ -88,7 +87,7 @@
|
|
88
87
|
<div class="page-header" id="banner">
|
89
88
|
<div class="row">
|
90
89
|
<div class="col-lg-8 col-md-7 col-sm-6">
|
91
|
-
<h1>
|
90
|
+
<h1>Umi</h1>
|
92
91
|
<p class="lead">日本語も美しく表示できるBootstrapテーマ</p>
|
93
92
|
</div>
|
94
93
|
<div class="col-lg-4 col-md-5 col-sm-6">
|
@@ -27,23 +27,6 @@ Rails.application.configure do
|
|
27
27
|
config.cache_store = :null_store
|
28
28
|
end
|
29
29
|
|
30
|
-
# Store uploaded files on the local file system (see config/storage.yml for options)
|
31
|
-
config.active_storage.service = :local
|
32
|
-
|
33
|
-
# Don't care if the mailer can't send.
|
34
|
-
config.action_mailer.raise_delivery_errors = false
|
35
|
-
|
36
|
-
config.action_mailer.perform_caching = false
|
37
|
-
|
38
|
-
# Print deprecation notices to the Rails logger.
|
39
|
-
config.active_support.deprecation = :log
|
40
|
-
|
41
|
-
# Raise an error on page load if there are pending migrations.
|
42
|
-
config.active_record.migration_error = :page_load
|
43
|
-
|
44
|
-
# Highlight code that triggered database queries in logs.
|
45
|
-
config.active_record.verbose_query_logs = true
|
46
|
-
|
47
30
|
# Debug mode disables concatenation and preprocessing of assets.
|
48
31
|
# This option may cause significant delays in view rendering with a large
|
49
32
|
# number of complex assets.
|
@@ -51,11 +34,4 @@ Rails.application.configure do
|
|
51
34
|
|
52
35
|
# Suppress logger output for asset requests.
|
53
36
|
config.assets.quiet = true
|
54
|
-
|
55
|
-
# Raises error for missing translations
|
56
|
-
# config.action_view.raise_on_missing_translations = true
|
57
|
-
|
58
|
-
# Use an evented file watcher to asynchronously detect changes in source code,
|
59
|
-
# routes, locales, etc. This feature depends on the listen gem.
|
60
|
-
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
61
37
|
end
|
@@ -24,10 +24,10 @@ Rails.application.configure do
|
|
24
24
|
|
25
25
|
# Compress JavaScripts and CSS.
|
26
26
|
config.assets.js_compressor = :uglifier
|
27
|
-
|
27
|
+
config.assets.css_compressor = :sass
|
28
28
|
|
29
29
|
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
|
-
config.assets.compile = false
|
30
|
+
# config.assets.compile = false
|
31
31
|
|
32
32
|
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
33
33
|
|
@@ -39,7 +39,6 @@ Rails.application.configure do
|
|
39
39
|
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
40
40
|
|
41
41
|
# Store uploaded files on the local file system (see config/storage.yml for options)
|
42
|
-
config.active_storage.service = :local
|
43
42
|
|
44
43
|
# Mount Action Cable outside main process or domain
|
45
44
|
# config.action_cable.mount_path = nil
|
@@ -54,7 +53,7 @@ Rails.application.configure do
|
|
54
53
|
config.log_level = :debug
|
55
54
|
|
56
55
|
# Prepend all log lines with the following tags.
|
57
|
-
config.log_tags = [
|
56
|
+
config.log_tags = [:request_id]
|
58
57
|
|
59
58
|
# Use a different cache store in production.
|
60
59
|
# config.cache_store = :mem_cache_store
|
@@ -63,8 +62,6 @@ Rails.application.configure do
|
|
63
62
|
# config.active_job.queue_adapter = :resque
|
64
63
|
# config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
|
65
64
|
|
66
|
-
config.action_mailer.perform_caching = false
|
67
|
-
|
68
65
|
# Ignore bad email addresses and do not raise email delivery errors.
|
69
66
|
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
70
67
|
# config.action_mailer.raise_delivery_errors = false
|
@@ -83,12 +80,11 @@ Rails.application.configure do
|
|
83
80
|
# require 'syslog/logger'
|
84
81
|
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
85
82
|
|
86
|
-
if ENV[
|
83
|
+
if ENV['RAILS_LOG_TO_STDOUT'].present?
|
87
84
|
logger = ActiveSupport::Logger.new(STDOUT)
|
88
85
|
logger.formatter = config.log_formatter
|
89
86
|
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
90
87
|
end
|
91
88
|
|
92
89
|
# Do not dump schema after migrations.
|
93
|
-
config.active_record.dump_schema_after_migration = false
|
94
90
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-honoka-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.7
|
4
|
+
version: 3.3.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takmg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootstrap-sass
|
@@ -70,16 +70,44 @@ dependencies:
|
|
70
70
|
name: sprockets-rails
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: 3.2.1
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - "
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.2.1
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: turbolinks
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 5.2.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 5.2.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: uglifier
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 4.1.20
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
81
109
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
110
|
+
version: 4.1.20
|
83
111
|
description: Gem to handle -Bootstrap honoka- easily
|
84
112
|
email:
|
85
113
|
- Takmg@example.com
|
@@ -90,6 +118,7 @@ files:
|
|
90
118
|
- MIT-LICENSE
|
91
119
|
- README.md
|
92
120
|
- Rakefile
|
121
|
+
- VERSIONS.md
|
93
122
|
- assets/stylesheets/_honoka.scss
|
94
123
|
- assets/stylesheets/_nico.scss
|
95
124
|
- assets/stylesheets/_rin.scss
|
@@ -134,6 +163,7 @@ files:
|
|
134
163
|
- test/dummy/app/views/pages/nico.html.erb
|
135
164
|
- test/dummy/app/views/pages/rin.html.erb
|
136
165
|
- test/dummy/app/views/pages/umi.html.erb
|
166
|
+
- test/dummy/bin/rails
|
137
167
|
- test/dummy/config.ru
|
138
168
|
- test/dummy/config/application.rb
|
139
169
|
- test/dummy/config/boot.rb
|
@@ -150,6 +180,7 @@ files:
|
|
150
180
|
- test/dummy/config/locales/en.yml
|
151
181
|
- test/dummy/config/routes.rb
|
152
182
|
- test/dummy/package.json
|
183
|
+
- test/dummy/production_key_generate.sh
|
153
184
|
- test/honoka_test.rb
|
154
185
|
- test/test_helper.rb
|
155
186
|
homepage: https://github.com/Takmg/bootstrap-honoka-rails
|
@@ -193,6 +224,7 @@ test_files:
|
|
193
224
|
- test/dummy/app/views/pages/nico.html.erb
|
194
225
|
- test/dummy/app/views/pages/rin.html.erb
|
195
226
|
- test/dummy/app/views/pages/umi.html.erb
|
227
|
+
- test/dummy/bin/rails
|
196
228
|
- test/dummy/config.ru
|
197
229
|
- test/dummy/config/application.rb
|
198
230
|
- test/dummy/config/boot.rb
|
@@ -209,5 +241,6 @@ test_files:
|
|
209
241
|
- test/dummy/config/locales/en.yml
|
210
242
|
- test/dummy/config/routes.rb
|
211
243
|
- test/dummy/package.json
|
244
|
+
- test/dummy/production_key_generate.sh
|
212
245
|
- test/honoka_test.rb
|
213
246
|
- test/test_helper.rb
|