bootstrap-honoka-rails 4.0.0.5 → 4.3.1

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.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -116
  3. data/Rakefile +17 -39
  4. data/assets/stylesheets/honoka/_honoka.scss +4 -2
  5. data/assets/stylesheets/honoka/_variables.scss +431 -202
  6. data/lib/bootstrap/honoka/rails.rb +0 -5
  7. data/lib/bootstrap/honoka/rails/engine.rb +5 -8
  8. data/lib/bootstrap/honoka/rails/version.rb +1 -8
  9. data/test/dummy/app/assets/javascripts/application.js +1 -2
  10. data/test/dummy/app/assets/stylesheets/application.css +2 -0
  11. data/test/dummy/app/controllers/pages_controller.rb +2 -4
  12. data/test/dummy/app/views/layouts/application.html.erb +14 -17
  13. data/test/dummy/app/views/pages/root.html.erb +40 -0
  14. data/test/dummy/config/application.rb +3 -1
  15. data/test/dummy/config/environments/development.rb +24 -0
  16. data/test/dummy/config/environments/production.rb +8 -4
  17. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  18. data/test/dummy/config/initializers/inflections.rb +16 -0
  19. data/test/dummy/config/initializers/mime_types.rb +4 -0
  20. data/test/dummy/config/routes.rb +1 -3
  21. data/test/honoka_test.rb +3 -42
  22. data/test/test_helper.rb +5 -49
  23. metadata +14 -154
  24. data/VERSIONS.md +0 -10
  25. data/assets/stylesheets/_nico.scss +0 -8
  26. data/assets/stylesheets/_umi.scss +0 -8
  27. data/assets/stylesheets/nico/_honoka.scss +0 -49
  28. data/assets/stylesheets/nico/_mixins.scss +0 -1
  29. data/assets/stylesheets/nico/_override.scss +0 -82
  30. data/assets/stylesheets/nico/_variables.scss +0 -897
  31. data/assets/stylesheets/umi/_bootswatch.scss +0 -193
  32. data/assets/stylesheets/umi/_honoka.scss +0 -52
  33. data/assets/stylesheets/umi/_mixins.scss +0 -1
  34. data/assets/stylesheets/umi/_override.scss +0 -42
  35. data/assets/stylesheets/umi/_variables.scss +0 -897
  36. data/test/dummy/app/assets/stylesheets/honoka.css +0 -3
  37. data/test/dummy/app/assets/stylesheets/nico.css +0 -3
  38. data/test/dummy/app/assets/stylesheets/umi.css +0 -3
  39. data/test/dummy/app/views/pages/honoka.html.erb +0 -1598
  40. data/test/dummy/app/views/pages/nico.html.erb +0 -1588
  41. data/test/dummy/app/views/pages/umi.html.erb +0 -1588
  42. data/test/dummy/bin/rails +0 -4
  43. data/test/dummy/config/initializers/assets.rb +0 -1
  44. data/test/dummy/production_key_generate.sh +0 -4
  45. data/test/dummy/public/favicon.ico +0 -0
  46. data/test/support/dummy_integration.rb +0 -57
  47. data/test/support/dummy_reporters.rb +0 -61
@@ -3,11 +3,6 @@ require 'bootstrap/honoka/rails/engine'
3
3
  module Bootstrap
4
4
  module Honoka
5
5
  module Rails
6
- # サポートしているスタイルシート一覧
7
- STYLE_SHEETS =
8
- Dir.glob("#{File.join(File.expand_path('../../..', __dir__), 'assets', 'stylesheets')}/*.scss")
9
- .map { |f| f.match(%r{.+/_([^/]+?)\.scss})[1].to_sym.freeze }
10
- .freeze
11
6
  end
12
7
  end
13
8
  end
@@ -1,9 +1,4 @@
1
- require_relative 'version'
2
-
3
- case Bootstrap::Honoka::Rails.major_ver
4
- when 4 then require 'bootstrap'
5
- when 3 then require 'bootstrap-sass'
6
- end
1
+ require 'bootstrap'
7
2
 
8
3
  module Bootstrap
9
4
  module Honoka
@@ -12,8 +7,10 @@ module Bootstrap
12
7
  isolate_namespace Bootstrap::Honoka::Rails
13
8
 
14
9
  # initializer
15
- initializer 'bootstrap-honoka-rails.assets' do |app|
16
- app.config.assets.paths << root.join('assets', 'stylesheets').to_s
10
+ initializer 'bootstrap-honoka4.assets' do |app|
11
+ %w[stylesheets].each do |sub|
12
+ app.config.assets.paths << root.join('assets', sub).to_s
13
+ end
17
14
  end
18
15
  end
19
16
  end
@@ -1,14 +1,7 @@
1
1
  module Bootstrap
2
2
  module Honoka
3
3
  module Rails
4
- VERSION = '4.0.0.5'.freeze
5
- def self.major_ver
6
- VERSION.split('.').first.to_i
7
- end
8
-
9
- def self.dependency_ver
10
- VERSION.split('.')[0..2].join('.')
11
- end
4
+ VERSION = '4.3.1'.freeze
12
5
  end
13
6
  end
14
7
  end
@@ -10,9 +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
14
13
  //= require rails-ujs
15
14
  //= require popper
16
15
  //= require bootstrap-sprockets
17
- //= require turbolinks
16
+ //= require bootstrap.min
18
17
  //= require_tree .
@@ -10,5 +10,7 @@
10
10
  * files in this directory. Styles in this file should be added after the last require_* statement.
11
11
  * It is generally better to create a new file per style scope.
12
12
  *
13
+ *= require _honoka
14
+ *= require_tree .
13
15
  *= require_self
14
16
  */
@@ -1,6 +1,4 @@
1
1
  class PagesController < ApplicationController
2
- # action定義
3
- ::Bootstrap::Honoka::Rails::STYLE_SHEETS.each do |s|
4
- define_method(s) {}
2
+ def root
5
3
  end
6
- end
4
+ end
@@ -1,18 +1,15 @@
1
1
  <!DOCTYPE html>
2
- <html code="<%= response.try(:code) if defined?(response) %>">
3
-
4
- <head>
5
- <title>Dummy</title>
6
- <%= csrf_meta_tags %>
7
- <%= csp_meta_tag %>
8
-
9
- <%= stylesheet_link_tag controller.action_name, media: "all" %>
10
- <%= stylesheet_link_tag 'application', media: 'all' %>
11
- <%= javascript_include_tag 'application' %>
12
- </head>
13
-
14
- <body>
15
- <%= yield %>
16
- </body>
17
-
18
- </html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= stylesheet_link_tag 'application', media: 'all' %>
9
+ <%= javascript_include_tag 'application' %>
10
+ </head>
11
+
12
+ <body>
13
+ <%= yield %>
14
+ </body>
15
+ </html>
@@ -0,0 +1,40 @@
1
+ <div class="bs-component">
2
+ <div class="alert alert-dismissible alert-warning">
3
+ <button type="button" class="close" data-dismiss="alert">×</button>
4
+ <h4 class="alert-heading">Warning!</h4>
5
+ <p class="mb-0">要求された処理は正常に完了できませんでした。このエラーについての詳細は<a href="#" class="alert-link">こちらのドキュメントを参照してください</a>。</p>
6
+ </div>
7
+ </div>
8
+ <div class="row">
9
+ <div class="col-lg-4">
10
+ <div class="bs-component">
11
+ <div class="alert alert-dismissible alert-danger">
12
+ <button type="button" class="close" data-dismiss="alert">×</button>
13
+ <strong>エラー</strong> <a href="#" class="alert-link">いくつかの項目を見直して</a> 再度投稿してください
14
+ </div>
15
+ </div>
16
+ </div>
17
+ <div class="col-lg-4">
18
+ <div class="bs-component">
19
+ <div class="alert alert-dismissible alert-success">
20
+ <button type="button" class="close" data-dismiss="alert">×</button>
21
+ <strong>完了</strong> 記事「<a href="#" class="alert-link">国立音ノ木坂学院について</a>」を公開しました
22
+ </div>
23
+ </div>
24
+ </div>
25
+ <div class="col-lg-4">
26
+ <div class="bs-component">
27
+ <div class="alert alert-dismissible alert-info">
28
+ <button type="button" class="close" data-dismiss="alert">×</button>
29
+ <strong>Tips</strong> 生徒手帳には<a href="#" class="alert-link">講堂の使用には許可が必要</a>と書いてあります
30
+ </div>
31
+ </div>
32
+ </div>
33
+ </div>
34
+ <div class="alert alert-info" role="alert">
35
+ A simple primary alert—check it out!
36
+ </div>
37
+
38
+ <div class="alert alert-secondary" role="alert">
39
+ A simple secondary alert—check it out!
40
+ </div>
@@ -1,7 +1,9 @@
1
1
  require_relative 'boot'
2
2
 
3
3
  require 'rails/all'
4
- Bundler.require(*Rails.groups << :development)
4
+
5
+ Bundler.require(*Rails.groups)
6
+ # require 'bootstrap-honoka-rails'
5
7
 
6
8
  module Dummy
7
9
  class Application < Rails::Application
@@ -27,6 +27,23 @@ 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
+
30
47
  # Debug mode disables concatenation and preprocessing of assets.
31
48
  # This option may cause significant delays in view rendering with a large
32
49
  # number of complex assets.
@@ -34,4 +51,11 @@ Rails.application.configure do
34
51
 
35
52
  # Suppress logger output for asset requests.
36
53
  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
37
61
  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,6 +39,7 @@ 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
42
43
 
43
44
  # Mount Action Cable outside main process or domain
44
45
  # config.action_cable.mount_path = nil
@@ -53,7 +54,7 @@ Rails.application.configure do
53
54
  config.log_level = :debug
54
55
 
55
56
  # Prepend all log lines with the following tags.
56
- config.log_tags = [:request_id]
57
+ config.log_tags = [ :request_id ]
57
58
 
58
59
  # Use a different cache store in production.
59
60
  # config.cache_store = :mem_cache_store
@@ -62,6 +63,8 @@ Rails.application.configure do
62
63
  # config.active_job.queue_adapter = :resque
63
64
  # config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
64
65
 
66
+ config.action_mailer.perform_caching = false
67
+
65
68
  # Ignore bad email addresses and do not raise email delivery errors.
66
69
  # Set this to true and configure the email server for immediate delivery to raise delivery errors.
67
70
  # config.action_mailer.raise_delivery_errors = false
@@ -80,11 +83,12 @@ Rails.application.configure do
80
83
  # require 'syslog/logger'
81
84
  # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
82
85
 
83
- if ENV['RAILS_LOG_TO_STDOUT'].present?
86
+ if ENV["RAILS_LOG_TO_STDOUT"].present?
84
87
  logger = ActiveSupport::Logger.new(STDOUT)
85
88
  logger.formatter = config.log_formatter
86
89
  config.logger = ActiveSupport::TaggedLogging.new(logger)
87
90
  end
88
91
 
89
92
  # Do not dump schema after migrations.
93
+ config.active_record.dump_schema_after_migration = false
90
94
  end
@@ -0,0 +1,7 @@
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!
@@ -0,0 +1,16 @@
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
@@ -0,0 +1,4 @@
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
@@ -1,5 +1,3 @@
1
1
  Rails.application.routes.draw do
2
- ::Bootstrap::Honoka::Rails::STYLE_SHEETS.each do |s|
3
- get "pages/#{s}"
4
- end
2
+ root to: 'pages#root'
5
3
  end
data/test/honoka_test.rb CHANGED
@@ -1,47 +1,8 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class Bootstrap::Honoka::Rails::Test < ActionDispatch::IntegrationTest
4
- # Mix-in
5
- include DummyIntegration
6
-
7
- # constant data variables
8
- TEST_PAGES = ::Bootstrap::Honoka::Rails::STYLE_SHEETS
9
- TEST_PATHS = TEST_PAGES.map { |el| "/pages/#{el}".freeze }.freeze
10
- TEST_DATAS = TEST_PAGES.zip(TEST_PATHS).map(&:freeze).freeze
11
-
12
- # スタイルシートの個数確認
13
- test 'stylesheet count' do
14
- # スタイルシート数の確認
15
- assert !TEST_PAGES.empty?, 'エラー:サポートされているスタイルシートが1つも存在していません。'
16
- end
17
-
18
- # access test
19
- TEST_DATAS.each do |page, path|
20
- test "access #{page}" do
21
- begin
22
- # ページのアクセステスト
23
- visit path
24
-
25
- # ステータスコードの取得を行う
26
- # https://stackoverflow.com/questions/7908907/how-to-test-the-response-code-with-capybara-selenium
27
- response_code = Capybara.page.first('html')[:code].to_i
28
- assert response_code == 200, 'エラー:正しくページを取得できませんでした。'
29
- ensure
30
- # エラーであっても表示ページのscreenshotは撮る。
31
- take_full_page_screenshot!
32
- end
33
- end
34
- end
35
-
36
- # compile test
37
- TEST_PAGES.each do |page|
38
- test "compile #{page}" do
39
- # Sassのコンパイルを行う
40
- SassC::Engine.new("@import '_#{page}';",
41
- load_paths: app.config.assets.paths).render
42
-
43
- # 例外が発生せずここまで来れば assert成功
44
- assert true
45
- end
4
+ test 'access test' do
5
+ get root_path
6
+ assert_response :success
46
7
  end
47
8
  end
data/test/test_helper.rb CHANGED
@@ -1,52 +1,8 @@
1
+ require 'minitest/autorun'
2
+ require 'minitest/reporters'
3
+
1
4
  # Configure Rails Environment
2
5
  ENV['RAILS_ENV'] = 'test'
3
6
 
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
7
+ require_relative '../test/dummy/config/environment'
8
+ require 'rails/test_help'
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.0.0.5
4
+ version: 4.3.1
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-30 00:00:00.000000000 Z
11
+ date: 2019-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap
@@ -16,42 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 4.0.0
19
+ version: 4.3.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 4.0.0
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
41
- - !ruby/object:Gem::Dependency
42
- name: jquery-rails
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: 4.3.3
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: 4.3.3
26
+ version: 4.3.1
55
27
  - !ruby/object:Gem::Dependency
56
28
  name: minitest
57
29
  requirement: !ruby/object:Gem::Requirement
@@ -80,91 +52,7 @@ dependencies:
80
52
  - - "~>"
81
53
  - !ruby/object:Gem::Version
82
54
  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
111
- - !ruby/object:Gem::Dependency
112
- name: sprockets-rails
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - "~>"
116
- - !ruby/object:Gem::Version
117
- version: 3.2.1
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - "~>"
123
- - !ruby/object:Gem::Version
124
- version: 3.2.1
125
- - !ruby/object:Gem::Dependency
126
- name: turbolinks
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: 5.2.0
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - "~>"
137
- - !ruby/object:Gem::Version
138
- version: 5.2.0
139
- - !ruby/object:Gem::Dependency
140
- name: uglifier
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: 4.1.20
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: 4.1.20
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
55
+ description: Gem to handle -Bootstrap honoka- easily
168
56
  email:
169
57
  - Takmg@example.com
170
58
  executables: []
@@ -174,23 +62,11 @@ files:
174
62
  - MIT-LICENSE
175
63
  - README.md
176
64
  - Rakefile
177
- - VERSIONS.md
178
65
  - assets/stylesheets/_honoka.scss
179
- - assets/stylesheets/_nico.scss
180
- - assets/stylesheets/_umi.scss
181
66
  - assets/stylesheets/honoka/_honoka.scss
182
67
  - assets/stylesheets/honoka/_mixins.scss
183
68
  - assets/stylesheets/honoka/_override.scss
184
69
  - assets/stylesheets/honoka/_variables.scss
185
- - assets/stylesheets/nico/_honoka.scss
186
- - assets/stylesheets/nico/_mixins.scss
187
- - assets/stylesheets/nico/_override.scss
188
- - assets/stylesheets/nico/_variables.scss
189
- - assets/stylesheets/umi/_bootswatch.scss
190
- - assets/stylesheets/umi/_honoka.scss
191
- - assets/stylesheets/umi/_mixins.scss
192
- - assets/stylesheets/umi/_override.scss
193
- - assets/stylesheets/umi/_variables.scss
194
70
  - lib/bootstrap/honoka/rails.rb
195
71
  - lib/bootstrap/honoka/rails/engine.rb
196
72
  - lib/bootstrap/honoka/rails/version.rb
@@ -199,17 +75,11 @@ files:
199
75
  - test/dummy/app/assets/images/.keep
200
76
  - test/dummy/app/assets/javascripts/application.js
201
77
  - test/dummy/app/assets/stylesheets/application.css
202
- - test/dummy/app/assets/stylesheets/honoka.css
203
- - test/dummy/app/assets/stylesheets/nico.css
204
- - test/dummy/app/assets/stylesheets/umi.css
205
78
  - test/dummy/app/controllers/application_controller.rb
206
79
  - test/dummy/app/controllers/pages_controller.rb
207
80
  - test/dummy/app/helpers/application_helper.rb
208
81
  - test/dummy/app/views/layouts/application.html.erb
209
- - test/dummy/app/views/pages/honoka.html.erb
210
- - test/dummy/app/views/pages/nico.html.erb
211
- - test/dummy/app/views/pages/umi.html.erb
212
- - test/dummy/bin/rails
82
+ - test/dummy/app/views/pages/root.html.erb
213
83
  - test/dummy/config.ru
214
84
  - test/dummy/config/application.rb
215
85
  - test/dummy/config/boot.rb
@@ -217,17 +87,15 @@ files:
217
87
  - test/dummy/config/environments/development.rb
218
88
  - test/dummy/config/environments/production.rb
219
89
  - test/dummy/config/environments/test.rb
220
- - test/dummy/config/initializers/assets.rb
90
+ - test/dummy/config/initializers/backtrace_silencers.rb
221
91
  - test/dummy/config/initializers/filter_parameter_logging.rb
92
+ - test/dummy/config/initializers/inflections.rb
93
+ - test/dummy/config/initializers/mime_types.rb
222
94
  - test/dummy/config/initializers/wrap_parameters.rb
223
95
  - test/dummy/config/locales/en.yml
224
96
  - test/dummy/config/routes.rb
225
97
  - test/dummy/package.json
226
- - test/dummy/production_key_generate.sh
227
- - test/dummy/public/favicon.ico
228
98
  - test/honoka_test.rb
229
- - test/support/dummy_integration.rb
230
- - test/support/dummy_reporters.rb
231
99
  - test/test_helper.rb
232
100
  homepage: https://github.com/Takmg/bootstrap-honoka-rails
233
101
  licenses:
@@ -251,24 +119,18 @@ requirements: []
251
119
  rubygems_version: 3.0.3
252
120
  signing_key:
253
121
  specification_version: 4
254
- summary: Gem to handle -Bootstrap Honoka, Umi, Nico, Rin- easily
122
+ summary: Gem to handle -Bootstrap honoka- easily
255
123
  test_files:
256
124
  - test/dummy/Rakefile
257
125
  - test/dummy/app/assets/config/manifest.js
258
126
  - test/dummy/app/assets/images/.keep
259
127
  - test/dummy/app/assets/javascripts/application.js
260
128
  - test/dummy/app/assets/stylesheets/application.css
261
- - test/dummy/app/assets/stylesheets/honoka.css
262
- - test/dummy/app/assets/stylesheets/nico.css
263
- - test/dummy/app/assets/stylesheets/umi.css
264
129
  - test/dummy/app/controllers/application_controller.rb
265
130
  - test/dummy/app/controllers/pages_controller.rb
266
131
  - test/dummy/app/helpers/application_helper.rb
267
132
  - test/dummy/app/views/layouts/application.html.erb
268
- - test/dummy/app/views/pages/honoka.html.erb
269
- - test/dummy/app/views/pages/nico.html.erb
270
- - test/dummy/app/views/pages/umi.html.erb
271
- - test/dummy/bin/rails
133
+ - test/dummy/app/views/pages/root.html.erb
272
134
  - test/dummy/config.ru
273
135
  - test/dummy/config/application.rb
274
136
  - test/dummy/config/boot.rb
@@ -276,15 +138,13 @@ test_files:
276
138
  - test/dummy/config/environments/development.rb
277
139
  - test/dummy/config/environments/production.rb
278
140
  - test/dummy/config/environments/test.rb
279
- - test/dummy/config/initializers/assets.rb
141
+ - test/dummy/config/initializers/backtrace_silencers.rb
280
142
  - test/dummy/config/initializers/filter_parameter_logging.rb
143
+ - test/dummy/config/initializers/inflections.rb
144
+ - test/dummy/config/initializers/mime_types.rb
281
145
  - test/dummy/config/initializers/wrap_parameters.rb
282
146
  - test/dummy/config/locales/en.yml
283
147
  - test/dummy/config/routes.rb
284
148
  - test/dummy/package.json
285
- - test/dummy/production_key_generate.sh
286
- - test/dummy/public/favicon.ico
287
149
  - test/honoka_test.rb
288
- - test/support/dummy_integration.rb
289
- - test/support/dummy_reporters.rb
290
150
  - test/test_helper.rb