bootstrap-honoka-rails 4.3.1 → 4.3.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +105 -19
  3. data/README_ja.md +140 -0
  4. data/Rakefile +41 -17
  5. data/VERSIONS.md +14 -0
  6. data/assets/stylesheets/_nico.scss +8 -0
  7. data/assets/stylesheets/nico/_honoka.scss +55 -0
  8. data/assets/stylesheets/nico/_mixins.scss +1 -0
  9. data/assets/stylesheets/nico/_override.scss +42 -0
  10. data/assets/stylesheets/nico/_override_nico.scss +47 -0
  11. data/assets/stylesheets/nico/_variables.scss +1193 -0
  12. data/assets/stylesheets/nico/_variables_nico.scss +95 -0
  13. data/lib/bootstrap/honoka/rails.rb +5 -0
  14. data/lib/bootstrap/honoka/rails/engine.rb +8 -5
  15. data/lib/bootstrap/honoka/rails/version.rb +8 -1
  16. data/test/dummy/app/assets/config/manifest.js +0 -1
  17. data/test/dummy/app/assets/javascripts/application.js +2 -1
  18. data/test/dummy/app/assets/stylesheets/application.css +0 -2
  19. data/test/dummy/app/assets/stylesheets/honoka.css +3 -0
  20. data/test/dummy/app/assets/stylesheets/nico.css +3 -0
  21. data/test/dummy/app/controllers/pages_controller.rb +4 -2
  22. data/test/dummy/app/views/layouts/application.html.erb +17 -14
  23. data/test/dummy/app/views/pages/honoka.html.erb +1703 -0
  24. data/test/dummy/app/views/pages/nico.html.erb +1865 -0
  25. data/test/dummy/bin/rails +4 -0
  26. data/test/dummy/config/application.rb +3 -4
  27. data/test/dummy/config/environments/development.rb +0 -24
  28. data/test/dummy/config/environments/production.rb +4 -8
  29. data/test/dummy/config/initializers/assets.rb +1 -0
  30. data/test/dummy/config/routes.rb +3 -1
  31. data/test/dummy/public/favicon.ico +0 -0
  32. data/test/honoka_test.rb +42 -3
  33. data/test/support/dummy_integration.rb +57 -0
  34. data/test/support/dummy_reporters.rb +61 -0
  35. data/test/test_helper.rb +49 -5
  36. metadata +143 -12
  37. data/test/dummy/app/views/pages/root.html.erb +0 -40
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  39. data/test/dummy/config/initializers/inflections.rb +0 -16
  40. data/test/dummy/config/initializers/mime_types.rb +0 -4
@@ -1,40 +0,0 @@
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 +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