bootstrap_leather 0.9.4 → 0.10.4

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 (174) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -0
  3. data/.rubocop.yml +23 -0
  4. data/.rubocop_todo.yml +12 -0
  5. data/.ruby-gemset +1 -1
  6. data/.ruby-version +1 -1
  7. data/.travis.yml +5 -0
  8. data/Gemfile +40 -7
  9. data/LICENSE.txt +1 -1
  10. data/README.md +260 -0
  11. data/Rakefile +35 -20
  12. data/VERSION +1 -1
  13. data/app/helpers/bootstrap_leather/alerts_helper.rb +36 -0
  14. data/app/helpers/bootstrap_leather/application_helper.rb +21 -0
  15. data/app/helpers/bootstrap_leather/badges_helper.rb +21 -0
  16. data/app/helpers/bootstrap_leather/carousels_helper.rb +32 -0
  17. data/app/helpers/bootstrap_leather/foot_helper.rb +14 -0
  18. data/app/helpers/bootstrap_leather/grid_helper.rb +10 -0
  19. data/app/helpers/bootstrap_leather/head_helper.rb +67 -0
  20. data/app/helpers/bootstrap_leather/hero_unit_helper.rb +14 -0
  21. data/app/helpers/bootstrap_leather/icons_helper.rb +33 -0
  22. data/app/helpers/bootstrap_leather/modals_helper.rb +20 -0
  23. data/app/helpers/bootstrap_leather/navigation_helper.rb +71 -0
  24. data/app/helpers/bootstrap_leather/tabs_helper.rb +28 -0
  25. data/app/helpers/bootstrap_leather/thumbnails_helper.rb +13 -0
  26. data/app/helpers/bootstrap_leather/typography_helper.rb +38 -0
  27. data/app/helpers/bootstrap_leather/widgets_helper.rb +29 -0
  28. data/app/views/bootstrap_leather/{_alert.html.haml → alerts/_alert.html.haml} +1 -1
  29. data/app/views/bootstrap_leather/{_alert_flash_messages.html.haml → alerts/_alert_flash_messages.html.haml} +0 -0
  30. data/app/views/bootstrap_leather/{_badge.html.haml → badges/_badge.html.haml} +1 -1
  31. data/app/views/bootstrap_leather/badges/_badge_to.html.haml +3 -0
  32. data/app/views/bootstrap_leather/{_carousel.html.haml → carousels/_carousel.html.haml} +0 -0
  33. data/app/views/bootstrap_leather/{_carousel_with_thumbnails.html.haml → carousels/_carousel_with_thumbnails.html.haml} +0 -0
  34. data/app/views/bootstrap_leather/{_footer_javascript.html.haml → foot/_footer_javascript.html.haml} +0 -0
  35. data/app/views/bootstrap_leather/{_head_css.html.haml → head/_head_css.html.haml} +0 -0
  36. data/app/views/bootstrap_leather/{_hero_unit.html.haml → hero_unit/_hero_unit.html.haml} +0 -0
  37. data/app/views/bootstrap_leather/{_icon.html.haml → icons/_icon.html.haml} +0 -0
  38. data/app/views/bootstrap_leather/{_icon_button_to.html.haml → icons/_icon_button_to.html.haml} +0 -0
  39. data/app/views/bootstrap_leather/{_icon_link_to.html.haml → icons/_icon_link_to.html.haml} +0 -0
  40. data/app/views/bootstrap_leather/{_modal.html.haml → modals/_modal.html.haml} +2 -2
  41. data/app/views/bootstrap_leather/navigation/_dropdown_nav_item.html.haml +6 -0
  42. data/app/views/bootstrap_leather/navigation/_hamburger_menu.html.haml +6 -0
  43. data/app/views/bootstrap_leather/{_logo_and_title.html.haml → navigation/_logo_and_title.html.haml} +0 -0
  44. data/app/views/bootstrap_leather/{_nav_heading.html.haml → navigation/_nav_heading.html.haml} +0 -0
  45. data/app/views/bootstrap_leather/{_nav_item.html.haml → navigation/_nav_item.html.haml} +0 -0
  46. data/app/views/bootstrap_leather/{_nav_list.html.haml → navigation/_nav_list.html.haml} +0 -0
  47. data/app/views/bootstrap_leather/navigation/_navbar.html.haml +14 -0
  48. data/app/views/bootstrap_leather/navigation/_navbar_contents.html.haml +5 -0
  49. data/app/views/bootstrap_leather/tabs/_tabs.html.haml +10 -0
  50. data/app/views/bootstrap_leather/{_thumbnail.html.haml → thumbnails/_thumbnail.html.haml} +0 -0
  51. data/app/views/bootstrap_leather/{_definition_list.html.haml → typography/_dl.html.haml} +0 -0
  52. data/app/views/bootstrap_leather/{_page_header.html.haml → typography/_page_header.html.haml} +1 -1
  53. data/app/views/bootstrap_leather/widgets/_widgets.html.haml +10 -0
  54. data/bin/rails +15 -0
  55. data/bootstrap_leather.gemspec +219 -57
  56. data/config/locales/en.yml +9 -0
  57. data/lib/bootstrap_leather/configuration.rb +16 -12
  58. data/lib/bootstrap_leather/engine.rb +19 -4
  59. data/lib/bootstrap_leather/localization.rb +20 -18
  60. data/lib/bootstrap_leather/version.rb +4 -1
  61. data/lib/bootstrap_leather.rb +6 -2
  62. data/lib/generators/bootstrap_leather/install/install_generator.rb +21 -19
  63. data/lib/generators/bootstrap_leather/install/templates/initializer.rb +3 -1
  64. data/lib/generators/bootstrap_leather/utils.rb +13 -4
  65. data/lib/templates/erb/scaffold/_form.html.erb +11 -0
  66. data/lib/templates/erb/scaffold/edit.html.erb +9 -0
  67. data/lib/templates/erb/scaffold/index.html.erb +29 -0
  68. data/lib/templates/erb/scaffold/new.html.erb +7 -0
  69. data/lib/templates/erb/scaffold/show.html.erb +12 -0
  70. data/lib/templates/haml/scaffold/_form.html.haml +10 -0
  71. data/lib/templates/haml/scaffold/edit.html.haml +8 -0
  72. data/lib/templates/haml/scaffold/index.html.haml +21 -0
  73. data/lib/templates/haml/scaffold/new.html.haml +6 -0
  74. data/lib/templates/haml/scaffold/show.html.haml +10 -0
  75. data/spec/dummy/Rakefile +9 -0
  76. data/spec/dummy/app/assets/images/.keep +0 -0
  77. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  78. data/spec/dummy/app/assets/stylesheets/application.scss +19 -0
  79. data/spec/dummy/app/assets/stylesheets/bootstrap-everything.scss +54 -0
  80. data/spec/dummy/app/controllers/application_controller.rb +6 -0
  81. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  82. data/spec/dummy/app/controllers/doo_dads_controller.rb +58 -0
  83. data/spec/dummy/app/controllers/erbits_controller.rb +58 -0
  84. data/spec/dummy/app/controllers/whatzits_controller.rb +58 -0
  85. data/spec/dummy/app/helpers/application_helper.rb +4 -0
  86. data/spec/dummy/app/mailers/application_mailer.rb +6 -0
  87. data/spec/dummy/app/models/application_record.rb +5 -0
  88. data/spec/dummy/app/models/concerns/.keep +0 -0
  89. data/spec/dummy/app/models/doo_dad.rb +3 -0
  90. data/spec/dummy/app/models/erbit.rb +2 -0
  91. data/spec/dummy/app/models/whatzit.rb +2 -0
  92. data/spec/dummy/app/views/doo_dads/_form.html.haml +16 -0
  93. data/spec/dummy/app/views/doo_dads/edit.html.haml +7 -0
  94. data/spec/dummy/app/views/doo_dads/index.html.haml +23 -0
  95. data/spec/dummy/app/views/doo_dads/new.html.haml +5 -0
  96. data/spec/dummy/app/views/doo_dads/show.html.haml +12 -0
  97. data/spec/dummy/app/views/erbits/_form.html.erb +5 -0
  98. data/spec/dummy/app/views/erbits/edit.html.erb +9 -0
  99. data/spec/dummy/app/views/erbits/index.html.erb +27 -0
  100. data/spec/dummy/app/views/erbits/new.html.erb +7 -0
  101. data/spec/dummy/app/views/erbits/show.html.erb +12 -0
  102. data/spec/dummy/app/views/layouts/application.html.haml +22 -0
  103. data/spec/dummy/app/views/pages/index.html.haml +1 -0
  104. data/spec/dummy/app/views/pages/style_guide.html.haml +801 -0
  105. data/spec/dummy/app/views/whatzits/_form.html.haml +4 -0
  106. data/spec/dummy/app/views/whatzits/edit.html.haml +8 -0
  107. data/spec/dummy/app/views/whatzits/index.html.haml +19 -0
  108. data/spec/dummy/app/views/whatzits/new.html.haml +6 -0
  109. data/spec/dummy/app/views/whatzits/show.html.haml +10 -0
  110. data/spec/dummy/bin/bundle +5 -0
  111. data/spec/dummy/bin/rails +6 -0
  112. data/spec/dummy/bin/rake +6 -0
  113. data/spec/dummy/bin/setup +36 -0
  114. data/spec/dummy/bin/update +31 -0
  115. data/spec/dummy/config/application.rb +36 -0
  116. data/spec/dummy/config/boot.rb +7 -0
  117. data/spec/dummy/config/cable.yml +9 -0
  118. data/spec/dummy/config/database.yml +25 -0
  119. data/spec/dummy/config/environment.rb +7 -0
  120. data/spec/dummy/config/environments/development.rb +57 -0
  121. data/spec/dummy/config/environments/test.rb +45 -0
  122. data/spec/dummy/config/initializers/application_controller_renderer.rb +7 -0
  123. data/spec/dummy/config/initializers/assets.rb +14 -0
  124. data/spec/dummy/config/initializers/backtrace_silencers.rb +10 -0
  125. data/spec/dummy/config/initializers/bootstrap_leather.rb +9 -0
  126. data/spec/dummy/config/initializers/cookies_serializer.rb +7 -0
  127. data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  128. data/spec/dummy/config/initializers/high_voltage.rb +5 -0
  129. data/spec/dummy/config/initializers/inflections.rb +17 -0
  130. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  131. data/spec/dummy/config/initializers/new_framework_defaults.rb +29 -0
  132. data/spec/dummy/config/initializers/session_store.rb +5 -0
  133. data/spec/dummy/config/initializers/wrap_parameters.rb +17 -0
  134. data/spec/dummy/config/locales/en.yml +23 -0
  135. data/spec/dummy/config/puma.rb +49 -0
  136. data/spec/dummy/config/routes.rb +8 -0
  137. data/spec/dummy/config/secrets.yml +22 -0
  138. data/spec/dummy/config/spring.rb +8 -0
  139. data/spec/dummy/config.ru +7 -0
  140. data/spec/dummy/db/migrate/20170407151055_create_doo_dads.rb +10 -0
  141. data/spec/dummy/db/migrate/20170408145839_create_whatzits.rb +10 -0
  142. data/spec/dummy/db/migrate/20170408161201_create_erbits.rb +10 -0
  143. data/spec/dummy/db/schema.rb +36 -0
  144. data/spec/dummy/db/seeds.rb +7 -0
  145. data/spec/dummy/db/test.sqlite3 +0 -0
  146. data/spec/factories/doo_dad.rb +6 -0
  147. data/spec/factories/erbit.rb +6 -0
  148. data/spec/factories/whatzit.rb +6 -0
  149. data/spec/helpers/bootstrap_leather/alerts_helper_spec.rb +62 -0
  150. data/spec/helpers/bootstrap_leather/badges_helper_spec.rb +41 -0
  151. data/spec/helpers/bootstrap_leather/carousels_helper_spec.rb +44 -0
  152. data/spec/helpers/bootstrap_leather/foot_helper_spec.rb +20 -0
  153. data/spec/helpers/bootstrap_leather/grid_helper_spec.rb +10 -0
  154. data/spec/helpers/bootstrap_leather/head_helper_spec.rb +82 -0
  155. data/spec/helpers/bootstrap_leather/hero_unit_helper_spec.rb +20 -0
  156. data/spec/helpers/bootstrap_leather/icon_helper_spec.rb +48 -0
  157. data/spec/helpers/bootstrap_leather/modals_helper_spec.rb +22 -0
  158. data/spec/helpers/bootstrap_leather/navigation_helper_spec.rb +110 -0
  159. data/spec/helpers/bootstrap_leather/tabs_helper_spec.rb +39 -0
  160. data/spec/helpers/bootstrap_leather/thumbnails_helper_spec.rb +20 -0
  161. data/spec/helpers/bootstrap_leather/typography_helper_spec.rb +43 -0
  162. data/spec/helpers/bootstrap_leather/widgets_helper_spec.rb +22 -0
  163. data/spec/rails_helper.rb +88 -0
  164. data/spec/spec_helper.rb +102 -0
  165. metadata +360 -44
  166. data/.document +0 -5
  167. data/README.rdoc +0 -194
  168. data/app/helpers/bootstrap_leather_helper.rb +0 -232
  169. data/app/views/bootstrap_leather/_badge_to.html.haml +0 -4
  170. data/app/views/bootstrap_leather/_dropdown_nav_item.html.haml +0 -11
  171. data/app/views/bootstrap_leather/_navbar.html.haml +0 -39
  172. data/app/views/bootstrap_leather/_tabs.html.haml +0 -10
  173. data/app/views/bootstrap_leather/_widgets.html.haml +0 -9
  174. data/lib/bootstrap_leather/railtie.rb +0 -9
@@ -0,0 +1,88 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'coveralls'
4
+ Coveralls.wear!
5
+
6
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
7
+ ENV['RAILS_ENV'] ||= 'test'
8
+ require File.expand_path('../dummy/config/environment', __FILE__)
9
+ # Prevent database truncation if the environment is production
10
+ abort('Rails is running in production mode!') if Rails.env.production?
11
+ require 'spec_helper'
12
+ require 'rspec/rails'
13
+ # Add additional requires below this line. Rails is not loaded until this point!
14
+ require 'shoulda/matchers'
15
+ require 'factory_girl_rails'
16
+ require 'capybara/rspec'
17
+ require 'capybara/poltergeist'
18
+ require 'database_cleaner'
19
+ require 'rake'
20
+
21
+ # Requires supporting ruby files with custom matchers and macros, etc, in
22
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
23
+ # run as spec files by default. This means that files in spec/support that end
24
+ # in _spec.rb will both be required and run as specs, causing the specs to be
25
+ # run twice. It is recommended that you do not name files matching this glob to
26
+ # end with _spec.rb. You can configure this pattern with the --pattern
27
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
28
+ #
29
+ # The following line is provided for convenience purposes. It has the downside
30
+ # of increasing the boot-up time by auto-requiring all files in the support
31
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
32
+ # require only the support files necessary.
33
+ Dir[BootstrapLeather::Engine.root.join('spec/support/*.rb')]
34
+ .each { |f| require f }
35
+ Dir[BootstrapLeather::Engine.root.join('spec/support/**/*.rb')]
36
+ .each { |f| require f }
37
+
38
+ # Checks for pending migration and applies them before tests are run.
39
+ # If you are not using ActiveRecord, you can remove this line.
40
+ ActiveRecord::Migrator.migrations_paths = 'spec/dummy/db/migrate'
41
+ ActiveRecord::Migration.maintain_test_schema!
42
+
43
+ Capybara.javascript_driver = :poltergeist
44
+
45
+ Shoulda::Matchers.configure do |config|
46
+ config.integrate do |with|
47
+ with.test_framework :rspec
48
+ with.library :rails
49
+ end
50
+ end
51
+
52
+ RSpec.configure do |config|
53
+
54
+ config.before(:suite) do
55
+ DatabaseCleaner.strategy = :transaction
56
+ DatabaseCleaner.clean_with(:truncation)
57
+ Dummy::Application.load_tasks
58
+ Rake::Task['db:seed'].invoke # loading seeds
59
+ end
60
+
61
+ config.around(:each) do |example|
62
+ DatabaseCleaner.cleaning do
63
+ example.run
64
+ end
65
+ end
66
+
67
+ config.include RSpecHtmlMatchers, type: :helper
68
+
69
+ # RSpec Rails can automatically mix in different behaviours to your tests
70
+ # based on their file location, for example enabling you to call `get` and
71
+ # `post` in specs under `spec/controllers`.
72
+ #
73
+ # You can disable this behaviour by removing the line below, and instead
74
+ # explicitly tag your specs with their type, e.g.:
75
+ #
76
+ # RSpec.describe UsersController, :type => :controller do
77
+ # # ...
78
+ # end
79
+ #
80
+ # The different available types are documented in the features, such as in
81
+ # https://relishapp.com/rspec/rspec-rails/docs
82
+ config.infer_spec_type_from_file_location!
83
+
84
+ # Filter lines from Rails gems in backtraces.
85
+ config.filter_rails_from_backtrace!
86
+ # arbitrary gems may also be filtered via:
87
+ # config.filter_gems_from_backtrace("gem name")
88
+ end
@@ -0,0 +1,102 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by the `rails generate rspec:install` command.
4
+ # Conventionally, all specs live under a `spec` directory, which RSpec adds to
5
+ # the `$LOAD_PATH`.
6
+ #
7
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
8
+ # this file to always be loaded, without a need to explicitly require it in any
9
+ # files.
10
+ #
11
+ # Given that it is always loaded, you are encouraged to keep this file as
12
+ # light-weight as possible. Requiring heavyweight dependencies from this file
13
+ # will add to the boot time of your test suite on EVERY test run, even for an
14
+ # individual file that may not need all of that loaded. Instead, consider making
15
+ # a separate helper file that requires the additional dependencies and performs
16
+ # the additional setup, and require it from the spec files that actually need
17
+ # it.
18
+ #
19
+ # The `.rspec` file also contains a few flags that are not defaults but that
20
+ # users commonly want.
21
+ #
22
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
23
+ RSpec.configure do |config|
24
+ # rspec-expectations config goes here. You can use an alternate
25
+ # assertion/expectation library such as wrong or the stdlib/minitest
26
+ # assertions if you prefer.
27
+ config.expect_with :rspec do |expectations|
28
+ # This option will default to `true` in RSpec 4. It makes the `description`
29
+ # and `failure_message` of custom matchers include text for helper methods
30
+ # defined using `chain`, e.g.:
31
+ # be_bigger_than(2).and_smaller_than(4).description
32
+ # # => "be bigger than 2 and smaller than 4"
33
+ # ...rather than:
34
+ # # => "be bigger than 2"
35
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
36
+ end
37
+
38
+ # rspec-mocks config goes here. You can use an alternate test double
39
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
40
+ config.mock_with :rspec do |mocks|
41
+ # Prevents you from mocking or stubbing a method that does not exist on
42
+ # a real object. This is generally recommended, and will default to
43
+ # `true` in RSpec 4.
44
+ mocks.verify_partial_doubles = true
45
+ end
46
+
47
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
48
+ # have no way to turn it off -- the option exists only for backwards
49
+ # compatibility in RSpec 3). It causes shared context metadata to be
50
+ # inherited by the metadata hash of host groups and examples, rather than
51
+ # triggering implicit auto-inclusion in groups with matching metadata.
52
+ config.shared_context_metadata_behavior = :apply_to_host_groups
53
+
54
+ # The settings below are suggested to provide a good initial experience
55
+ # with RSpec, but feel free to customize to your heart's content.
56
+ #
57
+ # # This allows you to limit a spec run to individual examples or groups
58
+ # # you care about by tagging them with `:focus` metadata. When nothing
59
+ # # is tagged with `:focus`, all examples get run. RSpec also provides
60
+ # # aliases for `it`, `describe`, and `context` that include `:focus`
61
+ # # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
62
+ # config.filter_run_when_matching :focus
63
+ #
64
+ # # Allows RSpec to persist some state between runs in order to support
65
+ # # the `--only-failures` and `--next-failure` CLI options. We recommend
66
+ # # you configure your source control system to ignore this file.
67
+ # config.example_status_persistence_file_path = "spec/examples.txt"
68
+ #
69
+ # # Limits the available syntax to the non-monkey patched syntax that is
70
+ # # recommended. For more details, see:
71
+ # # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
72
+ # # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
73
+ # # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
74
+ # config.disable_monkey_patching!
75
+ #
76
+ # # Many RSpec users commonly either run the entire suite or an individual
77
+ # # file, and it's useful to allow more verbose output when running an
78
+ # # individual spec file.
79
+ # if config.files_to_run.one?
80
+ # # Use the documentation formatter for detailed output,
81
+ # # unless a formatter has already been configured
82
+ # # (e.g. via a command-line flag).
83
+ # config.default_formatter = 'doc'
84
+ # end
85
+ #
86
+ # # Print the 10 slowest examples and example groups at the
87
+ # # end of the spec run, to help surface which specs are running
88
+ # # particularly slow.
89
+ # config.profile_examples = 10
90
+ #
91
+ # # Run specs in random order to surface order dependencies. If you find an
92
+ # # order dependency and want to debug it, you can fix the order by providing
93
+ # # the seed, which is printed after each run.
94
+ # # --seed 1234
95
+ # config.order = :random
96
+ #
97
+ # # Seed global randomization in this process using the `--seed` CLI option.
98
+ # # Setting this allows you to use `--seed` to deterministically reproduce
99
+ # # test failures related to randomization by passing the same `--seed` value
100
+ # # as the one that triggered the failure.
101
+ # Kernel.srand config.seed
102
+ end
metadata CHANGED
@@ -1,37 +1,37 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap_leather
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karen Lundgren
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-17 00:00:00.000000000 Z
11
+ date: 2017-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bootstrap-sass
14
+ name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "<"
18
18
  - !ruby/object:Gem::Version
19
- version: '4'
19
+ version: '6'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: '3.1'
22
+ version: '4'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "<"
28
28
  - !ruby/object:Gem::Version
29
- version: '4'
29
+ version: '6'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: '3.1'
32
+ version: '4'
33
33
  - !ruby/object:Gem::Dependency
34
- name: rails
34
+ name: rails-i18n
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "<"
@@ -51,7 +51,21 @@ dependencies:
51
51
  - !ruby/object:Gem::Version
52
52
  version: '4'
53
53
  - !ruby/object:Gem::Dependency
54
- name: haml
54
+ name: haml-rails
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '0.9'
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '0.9'
67
+ - !ruby/object:Gem::Dependency
68
+ name: jquery-rails
55
69
  requirement: !ruby/object:Gem::Requirement
56
70
  requirements:
57
71
  - - "~>"
@@ -65,7 +79,7 @@ dependencies:
65
79
  - !ruby/object:Gem::Version
66
80
  version: '4'
67
81
  - !ruby/object:Gem::Dependency
68
- name: jeweler
82
+ name: bootstrap_form
69
83
  requirement: !ruby/object:Gem::Requirement
70
84
  requirements:
71
85
  - - "~>"
@@ -78,59 +92,361 @@ dependencies:
78
92
  - - "~>"
79
93
  - !ruby/object:Gem::Version
80
94
  version: '2'
81
- description: BootstrapLeather is a collection of view helpers that makes it easier
82
- to create apps using Twitter Bootstrap
95
+ - !ruby/object:Gem::Dependency
96
+ name: bundler
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: '1.0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '1.0'
109
+ - !ruby/object:Gem::Dependency
110
+ name: juwelier
111
+ requirement: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - "~>"
114
+ - !ruby/object:Gem::Version
115
+ version: '2'
116
+ type: :development
117
+ prerelease: false
118
+ version_requirements: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - "~>"
121
+ - !ruby/object:Gem::Version
122
+ version: '2'
123
+ - !ruby/object:Gem::Dependency
124
+ name: rspec
125
+ requirement: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: 3.5.0
130
+ type: :development
131
+ prerelease: false
132
+ version_requirements: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - "~>"
135
+ - !ruby/object:Gem::Version
136
+ version: 3.5.0
137
+ - !ruby/object:Gem::Dependency
138
+ name: rubocop
139
+ requirement: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ version: '0.48'
144
+ type: :development
145
+ prerelease: false
146
+ version_requirements: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0.48'
151
+ - !ruby/object:Gem::Dependency
152
+ name: bootstrap-sass
153
+ requirement: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - "~>"
156
+ - !ruby/object:Gem::Version
157
+ version: '3.3'
158
+ type: :development
159
+ prerelease: false
160
+ version_requirements: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - "~>"
163
+ - !ruby/object:Gem::Version
164
+ version: '3.3'
165
+ - !ruby/object:Gem::Dependency
166
+ name: byebug
167
+ requirement: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - "~>"
170
+ - !ruby/object:Gem::Version
171
+ version: '9'
172
+ type: :development
173
+ prerelease: false
174
+ version_requirements: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - "~>"
177
+ - !ruby/object:Gem::Version
178
+ version: '9'
179
+ - !ruby/object:Gem::Dependency
180
+ name: factory_girl_rails
181
+ requirement: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - "~>"
184
+ - !ruby/object:Gem::Version
185
+ version: '4.5'
186
+ type: :development
187
+ prerelease: false
188
+ version_requirements: !ruby/object:Gem::Requirement
189
+ requirements:
190
+ - - "~>"
191
+ - !ruby/object:Gem::Version
192
+ version: '4.5'
193
+ - !ruby/object:Gem::Dependency
194
+ name: faker
195
+ requirement: !ruby/object:Gem::Requirement
196
+ requirements:
197
+ - - "~>"
198
+ - !ruby/object:Gem::Version
199
+ version: '1.4'
200
+ type: :development
201
+ prerelease: false
202
+ version_requirements: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - "~>"
205
+ - !ruby/object:Gem::Version
206
+ version: '1.4'
207
+ - !ruby/object:Gem::Dependency
208
+ name: high_voltage
209
+ requirement: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - "~>"
212
+ - !ruby/object:Gem::Version
213
+ version: '3'
214
+ type: :development
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - "~>"
219
+ - !ruby/object:Gem::Version
220
+ version: '3'
221
+ - !ruby/object:Gem::Dependency
222
+ name: rspec-its
223
+ requirement: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - ">="
226
+ - !ruby/object:Gem::Version
227
+ version: '1'
228
+ type: :development
229
+ prerelease: false
230
+ version_requirements: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: '1'
235
+ - !ruby/object:Gem::Dependency
236
+ name: rspec-rails
237
+ requirement: !ruby/object:Gem::Requirement
238
+ requirements:
239
+ - - "~>"
240
+ - !ruby/object:Gem::Version
241
+ version: '3.5'
242
+ type: :development
243
+ prerelease: false
244
+ version_requirements: !ruby/object:Gem::Requirement
245
+ requirements:
246
+ - - "~>"
247
+ - !ruby/object:Gem::Version
248
+ version: '3.5'
249
+ - !ruby/object:Gem::Dependency
250
+ name: seedbank
251
+ requirement: !ruby/object:Gem::Requirement
252
+ requirements:
253
+ - - "~>"
254
+ - !ruby/object:Gem::Version
255
+ version: '0.3'
256
+ type: :development
257
+ prerelease: false
258
+ version_requirements: !ruby/object:Gem::Requirement
259
+ requirements:
260
+ - - "~>"
261
+ - !ruby/object:Gem::Version
262
+ version: '0.3'
263
+ - !ruby/object:Gem::Dependency
264
+ name: sqlite3
265
+ requirement: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - "~>"
268
+ - !ruby/object:Gem::Version
269
+ version: '1.3'
270
+ type: :development
271
+ prerelease: false
272
+ version_requirements: !ruby/object:Gem::Requirement
273
+ requirements:
274
+ - - "~>"
275
+ - !ruby/object:Gem::Version
276
+ version: '1.3'
277
+ description: BootstrapLeather is a collection of view helpers and scaffold generators
278
+ that makes it easier to create apps using Twitter Bootstrap
83
279
  email: karen.e.lundgren@gmail.com
84
- executables: []
280
+ executables:
281
+ - rails
85
282
  extensions: []
86
283
  extra_rdoc_files:
87
284
  - LICENSE.txt
88
- - README.rdoc
285
+ - README.md
89
286
  files:
90
- - ".document"
91
287
  - ".rspec"
288
+ - ".rubocop.yml"
289
+ - ".rubocop_todo.yml"
92
290
  - ".ruby-gemset"
93
291
  - ".ruby-version"
292
+ - ".travis.yml"
94
293
  - Gemfile
95
294
  - LICENSE.txt
96
- - README.rdoc
295
+ - README.md
97
296
  - Rakefile
98
297
  - VERSION
99
- - app/helpers/bootstrap_leather_helper.rb
100
- - app/views/bootstrap_leather/_alert.html.haml
101
- - app/views/bootstrap_leather/_alert_flash_messages.html.haml
102
- - app/views/bootstrap_leather/_badge.html.haml
103
- - app/views/bootstrap_leather/_badge_to.html.haml
104
- - app/views/bootstrap_leather/_carousel.html.haml
105
- - app/views/bootstrap_leather/_carousel_with_thumbnails.html.haml
106
- - app/views/bootstrap_leather/_definition_list.html.haml
107
- - app/views/bootstrap_leather/_dropdown_nav_item.html.haml
108
- - app/views/bootstrap_leather/_footer_javascript.html.haml
109
- - app/views/bootstrap_leather/_head_css.html.haml
110
- - app/views/bootstrap_leather/_hero_unit.html.haml
111
- - app/views/bootstrap_leather/_icon.html.haml
112
- - app/views/bootstrap_leather/_icon_button_to.html.haml
113
- - app/views/bootstrap_leather/_icon_link_to.html.haml
114
- - app/views/bootstrap_leather/_logo_and_title.html.haml
115
- - app/views/bootstrap_leather/_modal.html.haml
116
- - app/views/bootstrap_leather/_nav_heading.html.haml
117
- - app/views/bootstrap_leather/_nav_item.html.haml
118
- - app/views/bootstrap_leather/_nav_list.html.haml
119
- - app/views/bootstrap_leather/_navbar.html.haml
120
- - app/views/bootstrap_leather/_page_header.html.haml
121
- - app/views/bootstrap_leather/_tabs.html.haml
122
- - app/views/bootstrap_leather/_thumbnail.html.haml
123
- - app/views/bootstrap_leather/_widgets.html.haml
298
+ - app/helpers/bootstrap_leather/alerts_helper.rb
299
+ - app/helpers/bootstrap_leather/application_helper.rb
300
+ - app/helpers/bootstrap_leather/badges_helper.rb
301
+ - app/helpers/bootstrap_leather/carousels_helper.rb
302
+ - app/helpers/bootstrap_leather/foot_helper.rb
303
+ - app/helpers/bootstrap_leather/grid_helper.rb
304
+ - app/helpers/bootstrap_leather/head_helper.rb
305
+ - app/helpers/bootstrap_leather/hero_unit_helper.rb
306
+ - app/helpers/bootstrap_leather/icons_helper.rb
307
+ - app/helpers/bootstrap_leather/modals_helper.rb
308
+ - app/helpers/bootstrap_leather/navigation_helper.rb
309
+ - app/helpers/bootstrap_leather/tabs_helper.rb
310
+ - app/helpers/bootstrap_leather/thumbnails_helper.rb
311
+ - app/helpers/bootstrap_leather/typography_helper.rb
312
+ - app/helpers/bootstrap_leather/widgets_helper.rb
313
+ - app/views/bootstrap_leather/alerts/_alert.html.haml
314
+ - app/views/bootstrap_leather/alerts/_alert_flash_messages.html.haml
315
+ - app/views/bootstrap_leather/badges/_badge.html.haml
316
+ - app/views/bootstrap_leather/badges/_badge_to.html.haml
317
+ - app/views/bootstrap_leather/carousels/_carousel.html.haml
318
+ - app/views/bootstrap_leather/carousels/_carousel_with_thumbnails.html.haml
319
+ - app/views/bootstrap_leather/foot/_footer_javascript.html.haml
320
+ - app/views/bootstrap_leather/head/_head_css.html.haml
321
+ - app/views/bootstrap_leather/hero_unit/_hero_unit.html.haml
322
+ - app/views/bootstrap_leather/icons/_icon.html.haml
323
+ - app/views/bootstrap_leather/icons/_icon_button_to.html.haml
324
+ - app/views/bootstrap_leather/icons/_icon_link_to.html.haml
325
+ - app/views/bootstrap_leather/modals/_modal.html.haml
326
+ - app/views/bootstrap_leather/navigation/_dropdown_nav_item.html.haml
327
+ - app/views/bootstrap_leather/navigation/_hamburger_menu.html.haml
328
+ - app/views/bootstrap_leather/navigation/_logo_and_title.html.haml
329
+ - app/views/bootstrap_leather/navigation/_nav_heading.html.haml
330
+ - app/views/bootstrap_leather/navigation/_nav_item.html.haml
331
+ - app/views/bootstrap_leather/navigation/_nav_list.html.haml
332
+ - app/views/bootstrap_leather/navigation/_navbar.html.haml
333
+ - app/views/bootstrap_leather/navigation/_navbar_contents.html.haml
334
+ - app/views/bootstrap_leather/tabs/_tabs.html.haml
335
+ - app/views/bootstrap_leather/thumbnails/_thumbnail.html.haml
336
+ - app/views/bootstrap_leather/typography/_dl.html.haml
337
+ - app/views/bootstrap_leather/typography/_page_header.html.haml
338
+ - app/views/bootstrap_leather/widgets/_widgets.html.haml
339
+ - bin/rails
124
340
  - bootstrap_leather.gemspec
341
+ - config/locales/en.yml
125
342
  - lib/bootstrap_leather.rb
126
343
  - lib/bootstrap_leather/configuration.rb
127
344
  - lib/bootstrap_leather/engine.rb
128
345
  - lib/bootstrap_leather/localization.rb
129
- - lib/bootstrap_leather/railtie.rb
130
346
  - lib/bootstrap_leather/version.rb
131
347
  - lib/generators/bootstrap_leather/install/install_generator.rb
132
348
  - lib/generators/bootstrap_leather/install/templates/initializer.rb
133
349
  - lib/generators/bootstrap_leather/utils.rb
350
+ - lib/templates/erb/scaffold/_form.html.erb
351
+ - lib/templates/erb/scaffold/edit.html.erb
352
+ - lib/templates/erb/scaffold/index.html.erb
353
+ - lib/templates/erb/scaffold/new.html.erb
354
+ - lib/templates/erb/scaffold/show.html.erb
355
+ - lib/templates/haml/scaffold/_form.html.haml
356
+ - lib/templates/haml/scaffold/edit.html.haml
357
+ - lib/templates/haml/scaffold/index.html.haml
358
+ - lib/templates/haml/scaffold/new.html.haml
359
+ - lib/templates/haml/scaffold/show.html.haml
360
+ - spec/dummy/Rakefile
361
+ - spec/dummy/app/assets/images/.keep
362
+ - spec/dummy/app/assets/javascripts/application.js
363
+ - spec/dummy/app/assets/stylesheets/application.scss
364
+ - spec/dummy/app/assets/stylesheets/bootstrap-everything.scss
365
+ - spec/dummy/app/controllers/application_controller.rb
366
+ - spec/dummy/app/controllers/concerns/.keep
367
+ - spec/dummy/app/controllers/doo_dads_controller.rb
368
+ - spec/dummy/app/controllers/erbits_controller.rb
369
+ - spec/dummy/app/controllers/whatzits_controller.rb
370
+ - spec/dummy/app/helpers/application_helper.rb
371
+ - spec/dummy/app/mailers/application_mailer.rb
372
+ - spec/dummy/app/models/application_record.rb
373
+ - spec/dummy/app/models/concerns/.keep
374
+ - spec/dummy/app/models/doo_dad.rb
375
+ - spec/dummy/app/models/erbit.rb
376
+ - spec/dummy/app/models/whatzit.rb
377
+ - spec/dummy/app/views/doo_dads/_form.html.haml
378
+ - spec/dummy/app/views/doo_dads/edit.html.haml
379
+ - spec/dummy/app/views/doo_dads/index.html.haml
380
+ - spec/dummy/app/views/doo_dads/new.html.haml
381
+ - spec/dummy/app/views/doo_dads/show.html.haml
382
+ - spec/dummy/app/views/erbits/_form.html.erb
383
+ - spec/dummy/app/views/erbits/edit.html.erb
384
+ - spec/dummy/app/views/erbits/index.html.erb
385
+ - spec/dummy/app/views/erbits/new.html.erb
386
+ - spec/dummy/app/views/erbits/show.html.erb
387
+ - spec/dummy/app/views/layouts/application.html.haml
388
+ - spec/dummy/app/views/pages/index.html.haml
389
+ - spec/dummy/app/views/pages/style_guide.html.haml
390
+ - spec/dummy/app/views/whatzits/_form.html.haml
391
+ - spec/dummy/app/views/whatzits/edit.html.haml
392
+ - spec/dummy/app/views/whatzits/index.html.haml
393
+ - spec/dummy/app/views/whatzits/new.html.haml
394
+ - spec/dummy/app/views/whatzits/show.html.haml
395
+ - spec/dummy/bin/bundle
396
+ - spec/dummy/bin/rails
397
+ - spec/dummy/bin/rake
398
+ - spec/dummy/bin/setup
399
+ - spec/dummy/bin/update
400
+ - spec/dummy/config.ru
401
+ - spec/dummy/config/application.rb
402
+ - spec/dummy/config/boot.rb
403
+ - spec/dummy/config/cable.yml
404
+ - spec/dummy/config/database.yml
405
+ - spec/dummy/config/environment.rb
406
+ - spec/dummy/config/environments/development.rb
407
+ - spec/dummy/config/environments/test.rb
408
+ - spec/dummy/config/initializers/application_controller_renderer.rb
409
+ - spec/dummy/config/initializers/assets.rb
410
+ - spec/dummy/config/initializers/backtrace_silencers.rb
411
+ - spec/dummy/config/initializers/bootstrap_leather.rb
412
+ - spec/dummy/config/initializers/cookies_serializer.rb
413
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
414
+ - spec/dummy/config/initializers/high_voltage.rb
415
+ - spec/dummy/config/initializers/inflections.rb
416
+ - spec/dummy/config/initializers/mime_types.rb
417
+ - spec/dummy/config/initializers/new_framework_defaults.rb
418
+ - spec/dummy/config/initializers/session_store.rb
419
+ - spec/dummy/config/initializers/wrap_parameters.rb
420
+ - spec/dummy/config/locales/en.yml
421
+ - spec/dummy/config/puma.rb
422
+ - spec/dummy/config/routes.rb
423
+ - spec/dummy/config/secrets.yml
424
+ - spec/dummy/config/spring.rb
425
+ - spec/dummy/db/migrate/20170407151055_create_doo_dads.rb
426
+ - spec/dummy/db/migrate/20170408145839_create_whatzits.rb
427
+ - spec/dummy/db/migrate/20170408161201_create_erbits.rb
428
+ - spec/dummy/db/schema.rb
429
+ - spec/dummy/db/seeds.rb
430
+ - spec/dummy/db/test.sqlite3
431
+ - spec/factories/doo_dad.rb
432
+ - spec/factories/erbit.rb
433
+ - spec/factories/whatzit.rb
434
+ - spec/helpers/bootstrap_leather/alerts_helper_spec.rb
435
+ - spec/helpers/bootstrap_leather/badges_helper_spec.rb
436
+ - spec/helpers/bootstrap_leather/carousels_helper_spec.rb
437
+ - spec/helpers/bootstrap_leather/foot_helper_spec.rb
438
+ - spec/helpers/bootstrap_leather/grid_helper_spec.rb
439
+ - spec/helpers/bootstrap_leather/head_helper_spec.rb
440
+ - spec/helpers/bootstrap_leather/hero_unit_helper_spec.rb
441
+ - spec/helpers/bootstrap_leather/icon_helper_spec.rb
442
+ - spec/helpers/bootstrap_leather/modals_helper_spec.rb
443
+ - spec/helpers/bootstrap_leather/navigation_helper_spec.rb
444
+ - spec/helpers/bootstrap_leather/tabs_helper_spec.rb
445
+ - spec/helpers/bootstrap_leather/thumbnails_helper_spec.rb
446
+ - spec/helpers/bootstrap_leather/typography_helper_spec.rb
447
+ - spec/helpers/bootstrap_leather/widgets_helper_spec.rb
448
+ - spec/rails_helper.rb
449
+ - spec/spec_helper.rb
134
450
  homepage: http://www.gemvein.com/museum/cases/bootstrap_leather
135
451
  licenses:
136
452
  - MIT
@@ -151,8 +467,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
467
  version: '0'
152
468
  requirements: []
153
469
  rubyforge_project:
154
- rubygems_version: 2.4.5.1
470
+ rubygems_version: 2.6.11
155
471
  signing_key:
156
472
  specification_version: 4
157
- summary: BootstrapLeather makes it easier to create apps using Twitter Bootstrap
473
+ summary: BootstrapLeather helps create apps using Twitter Bootstrap
158
474
  test_files: []
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt