bootstrap-honoka-rails 3.3.7 → 3.3.7.2

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: b5615fb378baf857f70316f36aaf1ad7ebdb04b17edbb5a90b5e6414d18af1af
4
- data.tar.gz: ddae5949a9863e4aa8a6f04f6f50706cca3b3bd933fab764a0aa770b170b6e47
3
+ metadata.gz: 499d8b7666d7fbc50b48c56a48bd9f4ac7f9c914d9de81e0afd89409030250f4
4
+ data.tar.gz: ea5ef2d630a065e8685a8f3bcfd8dec9d747ff2a8082f22dedf7929e9205ed83
5
5
  SHA512:
6
- metadata.gz: 1cf95b56b9417281d7f079e77d2ca166dc61fa0659891f2b7fb3376c6ac35f7804200b23b5711385d88216560c4513cc06361640f9da5d81575a143cb1754d05
7
- data.tar.gz: aa170c50880fed57dc1c612cf0b6fb7f063891c0ef71ecacf74c30c98ed5df22862f2257166e83db9bcb6c502b4185abfa21e72bf416a6b0585b10e4983040e4
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 は [honoka](https://github.com/windyakin/Honoka) や [Umi](https://ysakasin.github.io/Umi/) や [Nico](https://nico.kubosho.com/) や [Rin](https://rinhoshizo.la/) を 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 [ *= require _honoka ]
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 [ //= require popper, //= require bootstrap-sprockets , //= require bootstrap.min]
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 bootstrap.min # add line
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::Honoka4'
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
@@ -0,0 +1,10 @@
1
+ # Support Version
2
+
3
+ - O ... Supported and test completed(使用可能)
4
+ - X ... Not supported(使用不可)
5
+
6
+ | Gem | Honoka | Nico | Umi | Rin |
7
+ | ----- | ------ | ---- | --- | --- |
8
+ | 4.3.1 | O | X | X | X |
9
+ | 4.0.0 | O | O | O | X |
10
+ | 3.3.7 | O | O | O | O |
@@ -1,7 +1,7 @@
1
1
  module Bootstrap
2
2
  module Honoka
3
3
  module Rails
4
- VERSION = '3.3.7'.freeze
4
+ VERSION = '3.3.7.2'.freeze
5
5
  def self.major_ver
6
6
  VERSION.split('.').first.to_i
7
7
  end
@@ -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 bootstrap.min
16
+ //= require turbolinks
17
17
  //= require_tree .
@@ -1,3 +1,4 @@
1
1
  /*
2
+ *= require _bootstrap-sprockets
2
3
  *= require _honoka
3
4
  */
@@ -1,3 +1,4 @@
1
1
  /*
2
+ *= require _bootstrap-sprockets
2
3
  *= require _nico
3
4
  */
@@ -1,3 +1,4 @@
1
1
  /*
2
+ *= require _bootstrap-sprockets
2
3
  *= require _rin
3
4
  */
@@ -1,3 +1,4 @@
1
1
  /*
2
+ *= require _bootstrap-sprockets
2
3
  *= require _umi
3
4
  */
@@ -1,6 +1,6 @@
1
1
  <!-- テスト用サイト:動作が一致しているか確認する為に下記サイトを完全コピー
2
- コピー元 : https://rinhoshizo.la/bootstrap-ja.html
3
- 下記テスト用のサイトの著作権は https://rinhoshizo.la/bootstrap-ja.html に帰属します。
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">Rin</a>
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/raryosu/Rin/releases">Download</a></li>
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>Rin</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://rinhoshizo.la/bootstrap-ja.html
3
- 下記テスト用のサイトの著作権は https://rinhoshizo.la/bootstrap-ja.html に帰属します。
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">Rin</a>
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/raryosu/Rin/releases">Download</a></li>
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>Rin</h1>
92
- <p class="lead">日本語も美しく表示できるBootstrapテーマ</p>
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">高坂 穂乃果</h4>
1071
- <p class="list-group-item-text">μ'sの発起人。いつも笑顔で、行動力に満ちている。</p>
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://rinhoshizo.la/bootstrap-ja.html
3
- 下記テスト用のサイトの著作権は https://rinhoshizo.la/bootstrap-ja.html に帰属します。
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">Rin</a>
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/raryosu/Rin/releases">Download</a></li>
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>Rin</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">
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../config/application', __dir__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -3,6 +3,7 @@ require_relative 'boot'
3
3
  require 'rails/all'
4
4
  require 'jquery-rails'
5
5
  require 'sprockets'
6
+ require 'turbolinks'
6
7
 
7
8
  Bundler.require(*Rails.groups)
8
9
 
@@ -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
- # config.assets.css_compressor = :sass
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 = [ :request_id ]
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["RAILS_LOG_TO_STDOUT"].present?
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
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+
3
+ EDITOR=vim bundle exec rails credentials:edit
4
+ export SECRET_KEY_BASE=`bundle exec rake secret`
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-04-26 00:00:00.000000000 Z
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: '0'
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: '0'
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