bootstrap-honoka-rails 4.3.1.2 → 4.3.1.4

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: 93f3bc6446b71655e920f3bf99745fc6b9c806b304e03ac941bac80dc132b504
4
- data.tar.gz: 9ec0f824cd72dc8a124748958e391ba5db1acee9aa8e9918bc3c98b4899d5e17
3
+ metadata.gz: 835ddcb80cc81e229c90f789b5f834ed6386e65c9d8a9947e6a22d957c62fced
4
+ data.tar.gz: fac26c70f112046c8bfed08bcc4afeff886c0b6ba651741d24fc8ed7b7db9be7
5
5
  SHA512:
6
- metadata.gz: afc3fb6e6a1af9b42cdb25dbfed19ed29ea4cb6412c7ce4aa0ab1e5fe8ccc12d4f08edcb0c30c772314cfe7a600ed33f7d68b4bef95e41a3d0fe7a2d77428881
7
- data.tar.gz: 82110376bbc8110455a7c3860aa013ef6a2072160bd4a8a082b8a007f23d9ae0d05b521dc756090905c50a804d30ea65f10ef03bcd26b7f66371f0b281fa6953
6
+ metadata.gz: 395e6d26474f4b033fe32ee4b347ee5a7e7a81f0923c2b34df64ec89acc48d254abc0df7abfccca75adc3e7391e930ba5799a572741d296673b19ca10e44fb69
7
+ data.tar.gz: 7946f69156c1b5bce2754d005d7a3309209fdb830ef24153e28a280fbcf5bd6faa7524aa81c180d4eb7b12081e2e477038061d05fca44f8a97130353031a1af8
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Bootstrap-Honoka-Rails
2
2
 
3
3
  [Honoka](https://github.com/windyakin/Honoka) is a Bootstrap theme that can display Japanese beautifully.
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.
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
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 上に簡単にインストールできます。
@@ -34,7 +34,9 @@ gem 'bootstrap-honoka-rails' , '~>4.3.1' # or '~> 3.3.7'
34
34
  Add to application.css `*= require _honoka` <br>
35
35
  For bootstrap ver3 you need `*= _bootstrap-sprockets`.
36
36
 
37
- ```css app/assets/stylesheets/application.css
37
+ app/assets/stylesheets/application.css
38
+
39
+ ```css
38
40
  /*
39
41
  *= require _bootstrap-sprockets # Add line ※ v3 only
40
42
  *= require _honoka # Add line
@@ -44,10 +46,11 @@ For bootstrap ver3 you need `*= _bootstrap-sprockets`.
44
46
 
45
47
  and add to application.js <br>
46
48
  `//= require popper` (bootstrap ver4 later), <br>
47
- `//= require bootstrap-sprockets` , <br>
48
- `//= require bootstrap.min`
49
+ `//= require bootstrap-sprockets`
50
+
51
+ app/assets/javascripts/application.js
49
52
 
50
- ```js app/assets/javascripts/application.js
53
+ ```js
51
54
  //= require jquery2
52
55
  //= require rails-ujs
53
56
  //= require activestorage
@@ -66,28 +69,30 @@ Please check [here](https://github.com/twbs/bootstrap-sass/issues/714) for more
66
69
  とりあえずインストール後、上記を application.css と application.js に追加すれば OK です。<br>
67
70
  注意点として `bootstrap-sprockets` を読み込むと思いますが、その場合 `bootstrap.min` は読み込む必要がありません。<br>
68
71
  何故なら Dropdown が正しく動作しない可能性があります。 <br>
69
- 詳細は[こちら](https://github.com/twbs/bootstrap-sass/issues/714)をご確認ください。
72
+ 詳細は[こちら](https://github.com/twbs/bootstrap-sass/issues/714)をご確認ください。<br>
70
73
  ※production 環境で動作することを確認済み。 サンプルアプリは 'test/dummy' ディレクトリ内 にあります。
71
74
 
72
75
  ---
73
76
 
74
77
  Certain [versions](VERSIONS.md) also support Nico , Umi and Rin.
75
78
 
76
- ```css app/assets/stylesheets/application.css
79
+ app/assets/stylesheets/application.css
80
+
81
+ ```css
77
82
  *= require _umi # Add line
78
83
  *= require_self
79
84
  ```
80
85
 
81
86
  or
82
87
 
83
- ```css app/assets/stylesheets/application.css
88
+ ```css
84
89
  *= require _nico # Add line
85
90
  *= require_self
86
91
  ```
87
92
 
88
93
  or
89
94
 
90
- ```css app/assets/stylesheets/application.css
95
+ ```css
91
96
  *= require _rin # Add line
92
97
  *= require_self
93
98
  ```
@@ -95,7 +100,7 @@ or
95
100
  Please check [VERSIONS.md](VERSIONS.md) for Honoka Nico Umi Rin compatible Ver.
96
101
 
97
102
  [日本語訳][特定のバージョン](VERSIONS.md)では "Nico"と "Umi" と "Rin" も対応しています。
98
- `_honoka` の代わりに `*= require _nico` と書けば Nico になりますし、 `_umi` と書けば Umi デザインになります。
103
+ `_honoka` の代わりに `*= require _nico` と書けば Nico になりますし、 `_umi` と書けば Umi デザインになります。 <br>
99
104
  Rin も Ver によっては `_rin` と書けば対応出来ます。<br>
100
105
  Honoka Nico Umi Rin の対応 Ver は[VERSIONS.md](VERSIONS.md)をご確認ください。
101
106
 
@@ -110,11 +115,11 @@ bootstrap-honoka-rails は bootstrap 又は bootstrap-sass を内部的に使っ
110
115
 
111
116
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
112
117
 
113
- ## Use Bootstrap Theme
118
+ ## Supported bootstrap themes
114
119
 
115
- #### [Honoka](https://github.com/windyakin/Honoka)
120
+ #### [Honoka](http://honokak.osaka/)
116
121
 
117
- Source Url ... [https://github.com/windyakin/Honoka](https://github.com/windyakin/Honoka)
122
+ Source URL ... [https://github.com/windyakin/Honoka](https://github.com/windyakin/Honoka)
118
123
 
119
124
  > The MIT License (MIT)
120
125
  >
@@ -124,7 +129,7 @@ Source Url ... [https://github.com/windyakin/Honoka](https://github.com/windyaki
124
129
 
125
130
  #### [Umi](https://ysakasin.github.io/Umi/)
126
131
 
127
- Source Url ... [https://github.com/ysakasin/Umi](https://github.com/ysakasin/Umi)
132
+ Source URL ... [https://github.com/ysakasin/Umi](https://github.com/ysakasin/Umi)
128
133
 
129
134
  > The MIT License (MIT)
130
135
  >
@@ -134,7 +139,7 @@ Source Url ... [https://github.com/ysakasin/Umi](https://github.com/ysakasin/Umi
134
139
 
135
140
  #### [Nico](https://nico.kubosho.com/)
136
141
 
137
- Source Url ... [https://github.com/kubosho/Nico](https://github.com/kubosho/Nico)
142
+ Source URL ... [https://github.com/kubosho/Nico](https://github.com/kubosho/Nico)
138
143
 
139
144
  > The MIT License (MIT)
140
145
  >
@@ -144,7 +149,7 @@ Source Url ... [https://github.com/kubosho/Nico](https://github.com/kubosho/Nico
144
149
 
145
150
  #### [Rin](https://rinhoshizo.la/)
146
151
 
147
- Source Url ... [https://github.com/raryosu/Rin](https://github.com/raryosu/Rin)
152
+ Source URL ... [https://github.com/raryosu/Rin](https://github.com/raryosu/Rin)
148
153
 
149
154
  > The MIT License (MIT)
150
155
  >
data/Rakefile CHANGED
@@ -1,33 +1,55 @@
1
1
  begin
2
+ # bundlerでインストールしたgemをrequireで読み取り可能とする。
2
3
  require 'bundler/setup'
3
4
  rescue LoadError
4
5
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
6
  end
6
7
 
7
- require 'rdoc/task'
8
+ # requires
9
+ require 'bundler/gem_tasks' # build, clobber, release などのコマンドを使用可能とする。
10
+ require 'rdoc/task' # RDoc::Taskクラスのrequireを行う。
11
+ require 'rake/testtask' # Rake::TestTaskクラスのrequireを行う。
12
+ require 'rake/file_utils_ext' # rake用file_utilsの拡張
8
13
 
14
+ # rdoc, clobber_rdoc コマンド定義
9
15
  RDoc::Task.new(:rdoc) do |rdoc|
10
16
  rdoc.rdoc_dir = 'rdoc'
11
17
  rdoc.title = 'Bootstrap::Honoka::Rails'
12
18
  rdoc.options << '--line-numbers'
13
- rdoc.rdoc_files.include('README.md')
14
- rdoc.rdoc_files.include('lib/**/*.rb')
19
+ rdoc.rdoc_files.include('README.md', 'VERSIONS.md', 'lib/**/*.rb')
15
20
  end
16
21
 
17
- APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
18
- load 'rails/tasks/engine.rake'
19
-
20
- load 'rails/tasks/statistics.rake'
21
-
22
- require 'bundler/gem_tasks'
23
-
24
- require 'rake/testtask'
25
-
22
+ # test コマンド定義
26
23
  Rake::TestTask.new(:test) do |t|
27
- t.libs << 'test'
28
- t.pattern = 'test/**/*_test.rb'
29
- t.verbose = false
30
- t.warning = false
24
+ t.libs << 'test' # require pathの追加
25
+ t.pattern = 'test/**/*_test.rb' # 実行するテストコマンド
26
+ t.verbose = false # 詳細なテキストを非表示化
27
+ t.warning = false # 警告を非表示
31
28
  end
32
29
 
30
+ # test clobberコマンド定義
31
+ desc 'Remove files generated during test'
32
+ task :clobber_test do
33
+ # 下記 rm_rf を使用するとbegin rescueで囲む必要もないが、
34
+ # あえて rm_r を使用している理由は下記の通り。
35
+ #
36
+ # - 本処理は主にシステムのデフォルトで用意されているrdocに倣っている。
37
+ # ※rdocの削除処理に対して [secure属性] だけは追加している。
38
+ # - rdocの削除である `rake clobber_rdoc` コマンドを使用すると
39
+ # ::Rake::Fileutils::rm_r が使用されている。
40
+ # - その rm_r コマンドでは `rm_r @rdoc_dir rescue nil` というように
41
+ # no such file or directoryエラーが発生する事も考慮して、
42
+ # rescueを行う処理となっていた。
43
+ #
44
+ # 以上の事から、rm_rf ではなく rm_r を使用している。
45
+ begin
46
+ ::Rake::FileUtilsExt.rm_r('tmp', secure: true)
47
+ rescue StandardError
48
+ end
49
+ end
50
+
51
+ # clobberコマンドで clobber_testが動作するようにする。
52
+ task clobber: [:clobber_test]
53
+
54
+ # test コマンドをrakeのデフォルト動作とする。
33
55
  task default: :test
@@ -3,6 +3,12 @@ require 'bootstrap/honoka/rails/engine'
3
3
  module Bootstrap
4
4
  module Honoka
5
5
  module Rails
6
+ class << self
7
+ def stylesheets
8
+ Dir.glob("#{File.join(File.expand_path('../../..', __dir__), 'assets', 'stylesheets')}/*.scss")
9
+ .map { |f| f.match(%r{.+/_([^/]+?)\.scss})[1] }
10
+ end
11
+ end
6
12
  end
7
13
  end
8
14
  end
@@ -13,9 +13,7 @@ module Bootstrap
13
13
 
14
14
  # initializer
15
15
  initializer 'bootstrap-honoka-rails.assets' do |app|
16
- %w[stylesheets].each do |sub|
17
- app.config.assets.paths << root.join('assets', sub).to_s
18
- end
16
+ app.config.assets.paths << root.join('assets', 'stylesheets').to_s
19
17
  end
20
18
  end
21
19
  end
@@ -1,7 +1,7 @@
1
1
  module Bootstrap
2
2
  module Honoka
3
3
  module Rails
4
- VERSION = '4.3.1.2'.freeze
4
+ VERSION = '4.3.1.4'.freeze
5
5
  def self.major_ver
6
6
  VERSION.split('.').first.to_i
7
7
  end
@@ -1,9 +1,6 @@
1
1
  class PagesController < ApplicationController
2
- def honoka; end
3
-
4
- def umi; end
5
-
6
- def nico; end
7
-
8
- def rin; end
2
+ # action定義
3
+ ::Bootstrap::Honoka::Rails.stylesheets.each do |s|
4
+ define_method(s) {}
5
+ end
9
6
  end
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <html>
2
+ <html code="<%= response.try(:code) if defined?(response) %>">
3
3
 
4
4
  <head>
5
5
  <title>Dummy</title>
@@ -1,11 +1,7 @@
1
1
  require_relative 'boot'
2
2
 
3
3
  require 'rails/all'
4
- require 'jquery-rails'
5
- require 'sprockets'
6
- require 'turbolinks'
7
-
8
- Bundler.require(*Rails.groups)
4
+ Bundler.require(*Rails.groups << :development)
9
5
 
10
6
  module Dummy
11
7
  class Application < Rails::Application
@@ -1,6 +1,5 @@
1
1
  Rails.application.routes.draw do
2
- get 'pages/honoka'
3
- get 'pages/umi'
4
- get 'pages/nico'
5
- get 'pages/rin'
2
+ ::Bootstrap::Honoka::Rails.stylesheets.each do |s|
3
+ get "pages/#{s}"
4
+ end
6
5
  end
File without changes
data/test/honoka_test.rb CHANGED
@@ -1,10 +1,44 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class Bootstrap::Honoka::Rails::Test < ActionDispatch::IntegrationTest
4
- %w[honoka].each do |name|
5
- test "access #{name} test" do
6
- get "/pages/#{name}"
7
- assert_response :success
4
+ # Mix-in
5
+ include DummyIntegration
6
+
7
+ # constant stylesheets
8
+ STYLESHEETS = ::Bootstrap::Honoka::Rails.stylesheets
9
+
10
+ # constant data variables
11
+ TEST_PAGES = STYLESHEETS.map(&:freeze).freeze
12
+ TEST_PATHS = TEST_PAGES.map { |el| "/pages/#{el}".freeze }.freeze
13
+ TEST_DATAS = TEST_PAGES.zip(TEST_PATHS).map(&:freeze).freeze
14
+
15
+ # access test
16
+ TEST_DATAS.each do |page, path|
17
+ test "access #{page}" do
18
+ begin
19
+ # ページのアクセステスト
20
+ visit path
21
+
22
+ # ステータスコードの取得を行う
23
+ # https://stackoverflow.com/questions/7908907/how-to-test-the-response-code-with-capybara-selenium
24
+ response_code = Capybara.page.first('html')[:code].to_i
25
+ assert response_code == 200, 'エラー:正しくページを取得できませんでした。'
26
+ ensure
27
+ # エラーであっても表示ページのscreenshotは撮る。
28
+ take_full_page_screenshot!
29
+ end
30
+ end
31
+ end
32
+
33
+ # compile test
34
+ TEST_PAGES.each do |page|
35
+ test "compile #{page}" do
36
+ # Sassのコンパイルを行う
37
+ SassC::Engine.new("@import '_#{page}';",
38
+ load_paths: app.config.assets.paths).render
39
+
40
+ # 例外が発生せずここまで来れば assert成功
41
+ assert true
8
42
  end
9
43
  end
10
44
  end
@@ -0,0 +1,57 @@
1
+ # require files
2
+ require 'fileutils'
3
+
4
+ # DummyIntegration
5
+ module DummyIntegration
6
+ # Capybara系のヘルパーメソッド
7
+
8
+ # Mix-in
9
+ include Capybara::DSL
10
+ include Capybara::Minitest::Assertions
11
+
12
+ def setup
13
+ super
14
+ cleanup_cache_files
15
+ end
16
+
17
+ def teardown
18
+ super
19
+ Capybara.reset_sessions!
20
+ Capybara.use_default_driver
21
+ end
22
+
23
+ private
24
+
25
+ def cleanup_cache_files
26
+ FileUtils.rm_rf('test/dummy/tmp/cache', secure: true)
27
+ end
28
+
29
+ def screenshot_to_file!(path, log_append = '')
30
+ # save screenshot!
31
+ page.save_screenshot File.join(ROOT_PATH, path)
32
+ ::Minitest::Reporters::DummyReporter.log_strings_append! "Screenshot: Saved to #{path} #{log_append}"
33
+ end
34
+
35
+ # screenshotを撮る
36
+ def screenshot!
37
+ # パスを設定してファイルを保存する。
38
+ path = "tmp/#{name}.png"
39
+ screenshot_to_file! path
40
+ end
41
+
42
+ # 画面リサイズ後にscreenshotを撮る
43
+ def take_full_page_screenshot!
44
+ # https://testingrepository.com/full-page-screenshot-with-selenium/
45
+ # https://github.com/teampoltergeist/poltergeist/issues/165
46
+ # https://sqa.stackexchange.com/questions/9007/how-to-handle-time-out-receiving-message-from-the-renderer-in-chrome-driver
47
+
48
+ # 幅と高さを取得しブラウザのリサイズを行う。
49
+ width = Capybara.page.execute_script('return screen.width;')
50
+ height = Capybara.page.execute_script('return Math.max( document.body.scrollHeight , document.body.offsetHeight , document.documentElement.clientHeight , document.documentElement.scrollHeight , document.documentElement.offsetHeight );')
51
+ window = Capybara.current_session.driver.browser.manage.window
52
+ window.resize_to(width, height)
53
+
54
+ # スクリーンショットの保存
55
+ screenshot_to_file! "tmp/#{name}.png", "- W:H=#{width}:#{height}"
56
+ end
57
+ end
@@ -0,0 +1,61 @@
1
+ require 'minitest/reporters'
2
+
3
+ module Minitest
4
+ module Reporters
5
+ class DummyReporter < DefaultReporter
6
+ # 最後にログ出力する際の文字列配列(下記注意点)
7
+ #
8
+ # 1)特異メソッド内から下記変数を参照する為、クラス変数にするべきと思われるかもしれないが、
9
+ # 後にDummyReportersから継承される可能性を考慮すると、
10
+ # クラスインスタンス変数を使用する方が良いとの事。
11
+ # Effective Ruby 項目15
12
+ # 2)クラスインスタンス変数をクラスメソッドで使用する点から
13
+ # SingletonをIncludeする事も考慮したが、
14
+ # その場合
15
+ # ・Instanceメソッドからinitializeに引数が渡せない。
16
+ # ・どうしても親クラスのinitializeにデータを渡す際、
17
+ # def set_options( options = {} ); initialize(options); end;
18
+ # というようなRubyとして正か判断できないややこしい処理となりそうだった。
19
+ # (一般的に考えてコンストラクタを無理やり呼び出す違和感のあるやり方)
20
+ # という観点からSingletonは見送りとした。
21
+ @log_strings = []
22
+
23
+ # 特異メソッド
24
+ class << self
25
+ attr_reader :log_strings
26
+
27
+ def log_strings_append!(rhs)
28
+ @log_strings << rhs unless rhs.nil?
29
+ end
30
+ end
31
+
32
+ # 独自カラー
33
+ def cyan(string)
34
+ color? ? ANSI::Code.cyan(string) : string
35
+ end
36
+
37
+ def magenta(string)
38
+ color? ? ANSI::Code.magenta(string) : string
39
+ end
40
+
41
+ # レポートを行う
42
+ def on_report
43
+ super
44
+ return if self.class.log_strings.empty?
45
+
46
+ puts
47
+ puts cyan('------------------------------------------------------------')
48
+ puts magenta('[TEST INFO]')
49
+ self.class.log_strings.each do |data|
50
+ puts yellow(data)
51
+ end
52
+ puts cyan('------------------------------------------------------------')
53
+ puts
54
+ end
55
+ end
56
+
57
+ # セットアップ
58
+ reporter_options = { color: true }
59
+ ::Minitest::Reporters.use! [DummyReporter.new(reporter_options)]
60
+ end
61
+ end
data/test/test_helper.rb CHANGED
@@ -1,8 +1,52 @@
1
- require 'minitest/autorun'
2
- require 'minitest/reporters'
3
-
4
1
  # Configure Rails Environment
5
2
  ENV['RAILS_ENV'] = 'test'
6
3
 
7
- require_relative '../test/dummy/config/environment'
8
- require 'rails/test_help'
4
+ # require environment / rails / capybara
5
+ require_relative 'dummy/config/environment'
6
+ require 'rails/test_help' # 内部でminitestのautorunも行う。
7
+ require 'capybara/rails' # 内部でcapybara/dslもrequireする。
8
+ require 'capybara/minitest'
9
+
10
+ # settings
11
+ Webdrivers.cache_time = 10_000
12
+ ROOT_PATH = File.expand_path('../', File.dirname(__FILE__)).freeze
13
+
14
+ # support directory files require
15
+ Dir['test/support/**/*.rb'].each do |file|
16
+ require_relative File.join('.', file[5..-4])
17
+ end
18
+
19
+ # -----------------------------------------------------------------------------
20
+
21
+ # https://groups.google.com/forum/#!topic/chromedriver-users/ZBEju24L5ww
22
+
23
+ # Settings Selenium Timeout
24
+ client = Selenium::WebDriver::Remote::Http::Default.new
25
+ client.read_timeout = 1000 # 1000 second read wait
26
+
27
+ # Capybara driver settings
28
+ Capybara.register_driver :selenium_chrome_headless do |app|
29
+ Capybara::Selenium::Driver.load_selenium
30
+ browser_options = ::Selenium::WebDriver::Chrome::Options.new.tap do |opts|
31
+ opts.args << 'start-maximized'
32
+ opts.args << 'enable-automation'
33
+ opts.args << '--window-size=1200,768'
34
+ opts.args << '--headless'
35
+ opts.args << '--disable-gpu'
36
+ opts.args << '--no-sandbox'
37
+ opts.args << '--disable-infobars'
38
+ opts.args << '--disable-dev-shm-usage'
39
+ opts.args << '--disable-browser-side-navigation'
40
+ opts.args << '--disable-site-isolation-trials'
41
+ end
42
+ Capybara::Selenium::Driver.new(app, browser: :chrome, options: browser_options, http_client: client)
43
+ end
44
+
45
+ # Capybara settings
46
+ Capybara.configure do |config|
47
+ config.server_port = 3000
48
+ config.app_host = "http://localhost:#{config.server_port}"
49
+ config.default_driver = :selenium_chrome_headless
50
+ config.javascript_driver = :selenium_chrome_headless
51
+ config.server = :webrick
52
+ 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: 4.3.1.2
4
+ version: 4.3.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takmg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-01 00:00:00.000000000 Z
11
+ date: 2019-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.3.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: capybara
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 3.20.2
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.20.2
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: jquery-rails
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +80,34 @@ dependencies:
66
80
  - - "~>"
67
81
  - !ruby/object:Gem::Version
68
82
  version: 1.3.6
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry-byebug
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: 3.7.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: 3.7.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: sassc
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 2.0.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 2.0.0
69
111
  - !ruby/object:Gem::Dependency
70
112
  name: sprockets-rails
71
113
  requirement: !ruby/object:Gem::Requirement
@@ -108,7 +150,21 @@ dependencies:
108
150
  - - "~>"
109
151
  - !ruby/object:Gem::Version
110
152
  version: 4.1.20
111
- description: Gem to handle -Bootstrap honoka- easily
153
+ - !ruby/object:Gem::Dependency
154
+ name: webdrivers
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: 3.9.4
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: 3.9.4
167
+ description: Gem to handle -Bootstrap Honoka, Umi, Nico, Rin- easily
112
168
  email:
113
169
  - Takmg@example.com
114
170
  executables: []
@@ -147,16 +203,16 @@ files:
147
203
  - test/dummy/config/environments/production.rb
148
204
  - test/dummy/config/environments/test.rb
149
205
  - test/dummy/config/initializers/assets.rb
150
- - test/dummy/config/initializers/backtrace_silencers.rb
151
206
  - test/dummy/config/initializers/filter_parameter_logging.rb
152
- - test/dummy/config/initializers/inflections.rb
153
- - test/dummy/config/initializers/mime_types.rb
154
207
  - test/dummy/config/initializers/wrap_parameters.rb
155
208
  - test/dummy/config/locales/en.yml
156
209
  - test/dummy/config/routes.rb
157
210
  - test/dummy/package.json
158
211
  - test/dummy/production_key_generate.sh
212
+ - test/dummy/public/favicon.ico
159
213
  - test/honoka_test.rb
214
+ - test/support/dummy_integration.rb
215
+ - test/support/dummy_reporters.rb
160
216
  - test/test_helper.rb
161
217
  homepage: https://github.com/Takmg/bootstrap-honoka-rails
162
218
  licenses:
@@ -180,7 +236,7 @@ requirements: []
180
236
  rubygems_version: 3.0.3
181
237
  signing_key:
182
238
  specification_version: 4
183
- summary: Gem to handle -Bootstrap honoka- easily
239
+ summary: Gem to handle -Bootstrap Honoka, Umi, Nico, Rin- easily
184
240
  test_files:
185
241
  - test/dummy/Rakefile
186
242
  - test/dummy/app/assets/config/manifest.js
@@ -202,14 +258,14 @@ test_files:
202
258
  - test/dummy/config/environments/production.rb
203
259
  - test/dummy/config/environments/test.rb
204
260
  - test/dummy/config/initializers/assets.rb
205
- - test/dummy/config/initializers/backtrace_silencers.rb
206
261
  - test/dummy/config/initializers/filter_parameter_logging.rb
207
- - test/dummy/config/initializers/inflections.rb
208
- - test/dummy/config/initializers/mime_types.rb
209
262
  - test/dummy/config/initializers/wrap_parameters.rb
210
263
  - test/dummy/config/locales/en.yml
211
264
  - test/dummy/config/routes.rb
212
265
  - test/dummy/package.json
213
266
  - test/dummy/production_key_generate.sh
267
+ - test/dummy/public/favicon.ico
214
268
  - test/honoka_test.rb
269
+ - test/support/dummy_integration.rb
270
+ - test/support/dummy_reporters.rb
215
271
  - test/test_helper.rb
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
- # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
-
6
- # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
- # Rails.backtrace_cleaner.remove_silencers!
@@ -1,16 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new inflection rules using the following format. Inflections
4
- # are locale specific, and you may define rules for as many different
5
- # locales as you wish. All of these examples are active by default:
6
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
- # inflect.plural /^(ox)$/i, '\1en'
8
- # inflect.singular /^(ox)en/i, '\1'
9
- # inflect.irregular 'person', 'people'
10
- # inflect.uncountable %w( fish sheep )
11
- # end
12
-
13
- # These inflection rules are supported but not enabled by default:
14
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
- # inflect.acronym 'RESTful'
16
- # end
@@ -1,4 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new mime types for use in respond_to blocks:
4
- # Mime::Type.register "text/richtext", :rtf