bootybox 0.0.91

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 (98) hide show
  1. checksums.yaml +7 -0
  2. data/app/assets/images/alchemy/element_thumbnails/bootybox/defaults/default_image.png +0 -0
  3. data/app/assets/images/alchemy/element_thumbnails/bootybox/defaults/default_textbox.png +0 -0
  4. data/app/assets/images/alchemy/element_thumbnails/bootybox/grid/four_columns_25_25_25_25.png +0 -0
  5. data/app/assets/images/alchemy/element_thumbnails/bootybox/grid/one_column_100.png +0 -0
  6. data/app/assets/images/alchemy/element_thumbnails/bootybox/grid/three_columns_33_33_33.png +0 -0
  7. data/app/assets/images/alchemy/element_thumbnails/bootybox/grid/two_columns_25_75.png +0 -0
  8. data/app/assets/images/alchemy/element_thumbnails/bootybox/grid/two_columns_50_50.png +0 -0
  9. data/app/assets/images/alchemy/element_thumbnails/bootybox/grid/two_columns_75_25.png +0 -0
  10. data/app/assets/images/alchemy/element_thumbnails/bootybox/layout/element_container.png +0 -0
  11. data/app/assets/images/alchemy/element_thumbnails/bootybox/layout/seperator.png +0 -0
  12. data/app/assets/javascripts/bootybox/defaults.js +6 -0
  13. data/app/assets/javascripts/bootybox/modal.js.coffee +14 -0
  14. data/app/assets/javascripts/bootybox/portfolio.js.coffee +96 -0
  15. data/app/assets/javascripts/bootybox/slideshow.js.coffee +12 -0
  16. data/app/assets/javascripts/bootybox/templates/modal/buttons/cancel.hbs +1 -0
  17. data/app/assets/javascripts/bootybox/templates/modal/default.hbs +18 -0
  18. data/app/assets/javascripts/bootybox/templates/modal/modal_target.hbs +1 -0
  19. data/app/assets/javascripts/bootybox/templates/portfolio/portfolio_item.hbs +4 -0
  20. data/app/assets/javascripts/bootybox/vendor/flip.js +298 -0
  21. data/app/assets/stylesheets/bootybox/_elements.scss +54 -0
  22. data/app/assets/stylesheets/bootybox/_fixes.scss +22 -0
  23. data/app/assets/stylesheets/bootybox/_navi.scss +4 -0
  24. data/app/assets/stylesheets/bootybox/_portfolio.scss +37 -0
  25. data/app/assets/stylesheets/bootybox/_slides.scss +41 -0
  26. data/app/assets/stylesheets/bootybox/defaults.scss +7 -0
  27. data/app/assets/templates/framework.scss +50 -0
  28. data/app/helpers/bootybox_content_helper.rb +44 -0
  29. data/app/helpers/bootybox_form_helper.rb +39 -0
  30. data/app/helpers/bootybox_grid_helper.rb +112 -0
  31. data/app/services/bootybox/elements_config_service.rb +21 -0
  32. data/app/services/bootybox/navigational_context_pages_service.rb +15 -0
  33. data/app/services/bootybox/page_layout_config_service.rb +4 -0
  34. data/app/views/alchemy/elements/_contactform_editor.html.erb +6 -0
  35. data/app/views/alchemy/elements/_contactform_view.html.erb +48 -0
  36. data/app/views/alchemy/elements/bootybox/defaults/_button_editor.html.erb +8 -0
  37. data/app/views/alchemy/elements/bootybox/defaults/_button_view.html.erb +5 -0
  38. data/app/views/alchemy/elements/bootybox/defaults/_default_image_editor.html.erb +5 -0
  39. data/app/views/alchemy/elements/bootybox/defaults/_default_image_view.html.erb +8 -0
  40. data/app/views/alchemy/elements/bootybox/defaults/_default_textbox_editor.html.erb +5 -0
  41. data/app/views/alchemy/elements/bootybox/defaults/_default_textbox_view.html.erb +7 -0
  42. data/app/views/alchemy/elements/bootybox/defaults/_subheader_editor.html.erb +8 -0
  43. data/app/views/alchemy/elements/bootybox/defaults/_subheader_view.html.erb +10 -0
  44. data/app/views/alchemy/elements/bootybox/fancy/_flip_content_box_editor.html.erb +17 -0
  45. data/app/views/alchemy/elements/bootybox/fancy/_flip_content_box_view.html.erb +19 -0
  46. data/app/views/alchemy/elements/bootybox/grid/_four_columns_25_25_25_25_editor.html.haml +2 -0
  47. data/app/views/alchemy/elements/bootybox/grid/_four_columns_25_25_25_25_view.html.haml +10 -0
  48. data/app/views/alchemy/elements/bootybox/grid/_one_column_100_editor.html.haml +2 -0
  49. data/app/views/alchemy/elements/bootybox/grid/_one_column_100_view.html.haml +5 -0
  50. data/app/views/alchemy/elements/bootybox/grid/_three_columns_33_33_33_editor.html.haml +2 -0
  51. data/app/views/alchemy/elements/bootybox/grid/_three_columns_33_33_33_view.html.haml +8 -0
  52. data/app/views/alchemy/elements/bootybox/grid/_two_columns_25_75_editor.html.haml +2 -0
  53. data/app/views/alchemy/elements/bootybox/grid/_two_columns_25_75_view.html.haml +6 -0
  54. data/app/views/alchemy/elements/bootybox/grid/_two_columns_50_50_editor.html.haml +2 -0
  55. data/app/views/alchemy/elements/bootybox/grid/_two_columns_50_50_view.html.haml +6 -0
  56. data/app/views/alchemy/elements/bootybox/grid/_two_columns_66_33_editor.html.haml +3 -0
  57. data/app/views/alchemy/elements/bootybox/grid/_two_columns_66_33_view.html.haml +6 -0
  58. data/app/views/alchemy/elements/bootybox/grid/_two_columns_75_25_editor.html.haml +3 -0
  59. data/app/views/alchemy/elements/bootybox/grid/_two_columns_75_25_view.html.haml +6 -0
  60. data/app/views/alchemy/elements/bootybox/layout/_element_container_editor.html.erb +4 -0
  61. data/app/views/alchemy/elements/bootybox/layout/_element_container_view.html.erb +8 -0
  62. data/app/views/alchemy/elements/bootybox/layout/_page_header_editor.html.erb +3 -0
  63. data/app/views/alchemy/elements/bootybox/layout/_page_header_view.html.erb +6 -0
  64. data/app/views/alchemy/elements/bootybox/layout/_seperator_editor.html.erb +4 -0
  65. data/app/views/alchemy/elements/bootybox/layout/_seperator_view.html.erb +4 -0
  66. data/app/views/alchemy/elements/bootybox/navi/_sub_navi_container_editor.html.erb +3 -0
  67. data/app/views/alchemy/elements/bootybox/navi/_sub_navi_container_view.html.erb +5 -0
  68. data/app/views/alchemy/elements/bootybox/navi/_sub_navi_item_editor.html.erb +4 -0
  69. data/app/views/alchemy/elements/bootybox/navi/_sub_navi_item_view.html.erb +3 -0
  70. data/app/views/alchemy/elements/bootybox/portfolio/_portfolio_container_editor.html.erb +8 -0
  71. data/app/views/alchemy/elements/bootybox/portfolio/_portfolio_container_view.html.erb +12 -0
  72. data/app/views/alchemy/elements/bootybox/portfolio/_portfolio_item_editor.html.erb +7 -0
  73. data/app/views/alchemy/elements/bootybox/portfolio/_portfolio_item_view.html.erb +13 -0
  74. data/app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_editor.html.erb +3 -0
  75. data/app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_slide_editor.html.erb +4 -0
  76. data/app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_slide_view.html.erb +4 -0
  77. data/app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_view.html.erb +37 -0
  78. data/app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_container_editor.html.erb +4 -0
  79. data/app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_container_view.html.erb +10 -0
  80. data/app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_top_editor.html.erb +10 -0
  81. data/app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_top_view.html.erb +26 -0
  82. data/app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_teaser_top_editor.html.erb +4 -0
  83. data/app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_teaser_top_view.html.erb +28 -0
  84. data/app/views/alchemy/page_layouts/_default.html.erb +4 -0
  85. data/app/views/bootybox/forms/_form_group_container.html.erb +12 -0
  86. data/app/views/bootybox/forms/_form_group_input.html.erb +14 -0
  87. data/app/views/bootybox/forms/_form_group_select.html.erb +2 -0
  88. data/app/views/layouts/_footer.html.erb +5 -0
  89. data/app/views/layouts/_navigation.html.erb +32 -0
  90. data/app/views/layouts/_navigational_footer.html.erb +19 -0
  91. data/app/views/layouts/application.html.erb +42 -0
  92. data/config/elements.yml +274 -0
  93. data/config/locales/bootybox.de.yml +54 -0
  94. data/lib/bootybox.rb +19 -0
  95. data/lib/bootybox/engine.rb +41 -0
  96. data/lib/generators/bootybox/views/application_layout_generator.rb +20 -0
  97. data/lib/tasks/bootybox.rake +88 -0
  98. metadata +224 -0
@@ -0,0 +1,54 @@
1
+ de:
2
+ alchemy:
3
+ element_names:
4
+ page_header: Seitenüberschrift
5
+ slideshow_teaser_top: Slideshow Banner oben
6
+ slideshow_slide_top: Slideshowfolie Banner oben
7
+ default_textbox: Textbox
8
+ element_container: Elementgruppe
9
+ default_image: Bild
10
+ two_columns_50_50: 50/50 Raster
11
+ two_columns_25_75: 25/75 Raster
12
+ two_columns_75_25: 75/25 Raster
13
+ three_columns_33_33_33: 33/33/33 Raster
14
+ four_columns_25_25_25_25: 25/25/25/25 Raster
15
+ two_columns_66_33: 66/33 Raster
16
+ one_column_100: Einzelspalte
17
+ sub_navi_container: Unternavigation
18
+ sub_navi_item: Eintrag Unternavigation
19
+ sub_header: Untertitel
20
+ subtitle: Untertitel
21
+ content_names:
22
+ invisble: unsichtbar
23
+ css_class: CSS-Klasse
24
+ fixed_image_size: Bildgröße (px)
25
+ cell_names:
26
+ main: Hauptinhalt
27
+ main_before_form: Oberhalb des Formulars
28
+ main_after_form: Unterhalb des Formulars
29
+
30
+ style_names:
31
+ default: Standard (ohne)
32
+ teaser: Teaser
33
+ metainfo: Metatext
34
+ quote: Zitat
35
+ sep-small: Abstand klein (1.0)
36
+ sep-medium: Abstand mittel (2.0)
37
+ sep-large: Abstand groß (3.0)
38
+
39
+ pull-left: Links ausrichten
40
+ pull-right: Rechts ausrichten
41
+
42
+ btn-info: Infobutton
43
+ btn-default: Standardbutton
44
+ btn-success: Bestätigungsbutton
45
+
46
+ portfolio-vert: 'Vertikal/Fixe Breite'
47
+ portfolio-horiz: 'Horizontal/Fixe Höhe'
48
+ form_labels:
49
+ gender: Anrede
50
+ first_name: Vorname
51
+ last_name: Nachname
52
+ email: E-Mail-Adresse
53
+ subject: Betreff
54
+ notes: Nachricht
@@ -0,0 +1,19 @@
1
+ require "bootybox/engine"
2
+ require 'bootstrap-sass'
3
+ require 'handlebars_assets'
4
+
5
+ # Adding Locales
6
+ I18n.load_path += Dir.glob( File.expand_path("../../config/locales/*.{rb,yml}", __FILE__))
7
+
8
+ # Loading Rake tasks
9
+ Dir[File.expand_path("../tasks/*.rake", __FILE__)].each { |ext| load ext } if defined?(Rake)
10
+
11
+ require 'gem_config'
12
+
13
+ module Bootybox
14
+ include GemConfig::Base
15
+
16
+ with_configuration do
17
+ has :css_framework, values: [:bootstrap, :foundation], default: :bootstrap
18
+ end
19
+ end
@@ -0,0 +1,41 @@
1
+ module Bootybox
2
+ class Engine < Rails::Engine
3
+
4
+
5
+ initializer "set locale" do
6
+ I18n.default_locale = :de
7
+ end
8
+
9
+ initializer "extend application controller with default filters" do
10
+ ::ApplicationController.class_eval do
11
+ if defined?(Alchemy::Page)
12
+ before_action :get_root_and_menu_pages
13
+
14
+ def get_root_and_menu_pages
15
+ @menu_root = Alchemy::Page.where(:language_root => true, :language_code => I18n.locale).first
16
+
17
+ if @menu_root
18
+ @top_menu = Alchemy::Page.where(:parent_id => @menu_root.id, :visible => true).order(:rgt)
19
+ end
20
+ end
21
+
22
+ %w(previous next parent).each do |page_type|
23
+ meth_name = "page_#{page_type}"
24
+
25
+ self.send :attr_accessor, meth_name
26
+ define_method meth_name do
27
+ if @page
28
+ if self.instance_variable_get("@#{meth_name}").nil?
29
+ self.instance_variable_set("@#{meth_name}", Bootybox::NavigationalContextPagesService.get(@page, page_type.to_sym))
30
+ end
31
+ return self.instance_variable_get("@#{meth_name}")
32
+ end
33
+ end
34
+ end
35
+ end
36
+
37
+ end
38
+ end
39
+
40
+ end
41
+ end
@@ -0,0 +1,20 @@
1
+ require "rails/generators"
2
+
3
+ module Bootybox
4
+ module Views
5
+ class ApplicationLayoutGenerator < Rails::Generators::Base
6
+
7
+
8
+ source_root File.expand_path('../../../../../app/views/layouts', __FILE__)
9
+
10
+ def copy
11
+ %w(application.html.erb _footer.html.erb _navigation.html.erb _navigational_footer.html.erb).each do |template|
12
+ copy_file template, "#{destination_root}/app/views/layouts/#{template}"
13
+ end
14
+ end
15
+
16
+
17
+
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,88 @@
1
+ require "rake"
2
+ namespace :bootybox do
3
+
4
+ desc "Show a list of all avaiblable elements"
5
+ task :list_elements do
6
+ puts "yeah"
7
+ end
8
+
9
+ desc "Loads the Bootybox elements config into the applictions element config"
10
+ task :copy_elements_config do
11
+ FileUtils.mkdir_p(File.join(Rails.root, "config/alchemy"))
12
+ target_element_file = File.join(Rails.root, "config/alchemy/elements.yml")
13
+ `touch #{target_element_file}`
14
+ source_element_file = File.expand_path("../../../config/elements.yml", __FILE__)
15
+
16
+ if !File.exists?(target_element_file)
17
+ puts "'#{target_element_file}' not found:"
18
+ puts "Copying source from '#{source_element_file}'"
19
+ %x(cp #{source_element_file} #{target_element_file})
20
+ else
21
+ target_data = YAML::load(File.open(target_element_file).read)
22
+ source_data = YAML::load(File.open(source_element_file).read)
23
+ if target_data == false || target_data.empty?
24
+ puts "Copying source from '#{source_element_file}'"
25
+ %x(cp #{source_element_file} #{target_element_file})
26
+ elsif target_data.is_a?(Array)
27
+ raise "merge"
28
+ # merging the data
29
+ puts "====== Bootybox ======"
30
+ puts "... Merging the source data in the target elements file"
31
+ puts "1.. Selecting source elements:"
32
+ source_keys = source_data.map {|s| s['name'] }
33
+ puts "==> use this in your page_layouts.yml or cells.yml"
34
+ source_keys.each {|k| puts "- #{k}"}
35
+
36
+ puts "2.. Creating Backup:"
37
+ backup_file = "#{target_element_file}.backup-#{Time.now.to_i}"
38
+ %x(cp #{target_element_file} #{backup_file})
39
+ puts "==> #{backup_file}"
40
+
41
+ puts "3.. Overwriting existing elements:"
42
+ target_data = target_data.select {|t| !source_keys.include?(t['name'])}
43
+
44
+
45
+
46
+ target_data += source_data
47
+
48
+ output = YAML::dump(target_data.uniq)
49
+
50
+ # Adding Spaces
51
+ source_keys.each do |sk|
52
+ output = output.gsub("- name: #{sk}", "\n- name: #{sk}")
53
+ end
54
+
55
+ File.truncate(target_element_file,0)
56
+ File.open(target_element_file, "wb+") {|file|
57
+ file.puts(output)
58
+ file.close
59
+ }
60
+
61
+ end
62
+ end
63
+
64
+ end
65
+
66
+ desc "Setup Everything to get this shit running!"
67
+ task :setup do
68
+
69
+ # What should happen?
70
+ # 1. Freshly reinstall bundly (rm Gemfile.lock && bundle install)
71
+ # 2. Load alchemy migs (rake alchemy:install:migrations)
72
+ # 3. Run alchemy migs (rake db:migrate)
73
+ # 4. load alchemy seeds (rake rake alchemy:db:dump)
74
+ # 5. Copy alchemy default layout (app/views/alchemy/page_layouts/_default.html.erb)
75
+ # 6. create default alchemy user (Alchemy::User.create(:login => 'admin', :email => 'it-support@friends-systems.de', :alchemy_roles => 'admin', :password => 'test123'))
76
+ # 7. Copy Bootybox elements.yml, page_layouts.yml and cells.yml (These are the files which the CMS needs to be able to add elements to a page)
77
+ # TODO: Templates for page_layouts.yml and cells.yml needs tho be created
78
+ # 8. Create Language root home page (the page that is the home page)(Its needed by the bootybox before_filter that gets added to ApplicationController for rendering menu etc...) (Alchemy::Page.create(:name =>"Start", :language_code => 'de', :language_root => true, :parent_id => 1, :page_layout => "default", :public => true))
79
+ # 9. Copy default layout view files (application.html.erb, _navigation.html.erb to app)
80
+ # TODO: Templates need to be created
81
+ # 10. Copy CSS Files: application.scss, framework.css (It contains bootstrap), the friends_crm folder (_custom_variables.scss, crm_custom_styles.scss), also create a project folder for stylesheets (create template as well)
82
+ # 11. Copy JS Files: Application JS that loads all stuff. Also Copy a 'init.js' file that loads all app specic stuff (create template as well)
83
+
84
+
85
+ end
86
+
87
+
88
+ end
metadata ADDED
@@ -0,0 +1,224 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootybox
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.91
5
+ platform: ruby
6
+ authors:
7
+ - Florian Eck
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-10-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bootstrap-sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 3.3.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 3.3.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: sprockets-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "<"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "<"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sprockets
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: handlebars_assets
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: '0.23'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: '0.23'
69
+ - !ruby/object:Gem::Dependency
70
+ name: gem_config
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: haml-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Contains serveral elements based on the bootstrap framework for the Alchemy
98
+ CMS System
99
+ email:
100
+ - info@el-digital.de
101
+ executables: []
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - app/assets/images/alchemy/element_thumbnails/bootybox/defaults/default_image.png
106
+ - app/assets/images/alchemy/element_thumbnails/bootybox/defaults/default_textbox.png
107
+ - app/assets/images/alchemy/element_thumbnails/bootybox/grid/four_columns_25_25_25_25.png
108
+ - app/assets/images/alchemy/element_thumbnails/bootybox/grid/one_column_100.png
109
+ - app/assets/images/alchemy/element_thumbnails/bootybox/grid/three_columns_33_33_33.png
110
+ - app/assets/images/alchemy/element_thumbnails/bootybox/grid/two_columns_25_75.png
111
+ - app/assets/images/alchemy/element_thumbnails/bootybox/grid/two_columns_50_50.png
112
+ - app/assets/images/alchemy/element_thumbnails/bootybox/grid/two_columns_75_25.png
113
+ - app/assets/images/alchemy/element_thumbnails/bootybox/layout/element_container.png
114
+ - app/assets/images/alchemy/element_thumbnails/bootybox/layout/seperator.png
115
+ - app/assets/javascripts/bootybox/defaults.js
116
+ - app/assets/javascripts/bootybox/modal.js.coffee
117
+ - app/assets/javascripts/bootybox/portfolio.js.coffee
118
+ - app/assets/javascripts/bootybox/slideshow.js.coffee
119
+ - app/assets/javascripts/bootybox/templates/modal/buttons/cancel.hbs
120
+ - app/assets/javascripts/bootybox/templates/modal/default.hbs
121
+ - app/assets/javascripts/bootybox/templates/modal/modal_target.hbs
122
+ - app/assets/javascripts/bootybox/templates/portfolio/portfolio_item.hbs
123
+ - app/assets/javascripts/bootybox/vendor/flip.js
124
+ - app/assets/stylesheets/bootybox/_elements.scss
125
+ - app/assets/stylesheets/bootybox/_fixes.scss
126
+ - app/assets/stylesheets/bootybox/_navi.scss
127
+ - app/assets/stylesheets/bootybox/_portfolio.scss
128
+ - app/assets/stylesheets/bootybox/_slides.scss
129
+ - app/assets/stylesheets/bootybox/defaults.scss
130
+ - app/assets/templates/framework.scss
131
+ - app/helpers/bootybox_content_helper.rb
132
+ - app/helpers/bootybox_form_helper.rb
133
+ - app/helpers/bootybox_grid_helper.rb
134
+ - app/services/bootybox/elements_config_service.rb
135
+ - app/services/bootybox/navigational_context_pages_service.rb
136
+ - app/services/bootybox/page_layout_config_service.rb
137
+ - app/views/alchemy/elements/_contactform_editor.html.erb
138
+ - app/views/alchemy/elements/_contactform_view.html.erb
139
+ - app/views/alchemy/elements/bootybox/defaults/_button_editor.html.erb
140
+ - app/views/alchemy/elements/bootybox/defaults/_button_view.html.erb
141
+ - app/views/alchemy/elements/bootybox/defaults/_default_image_editor.html.erb
142
+ - app/views/alchemy/elements/bootybox/defaults/_default_image_view.html.erb
143
+ - app/views/alchemy/elements/bootybox/defaults/_default_textbox_editor.html.erb
144
+ - app/views/alchemy/elements/bootybox/defaults/_default_textbox_view.html.erb
145
+ - app/views/alchemy/elements/bootybox/defaults/_subheader_editor.html.erb
146
+ - app/views/alchemy/elements/bootybox/defaults/_subheader_view.html.erb
147
+ - app/views/alchemy/elements/bootybox/fancy/_flip_content_box_editor.html.erb
148
+ - app/views/alchemy/elements/bootybox/fancy/_flip_content_box_view.html.erb
149
+ - app/views/alchemy/elements/bootybox/grid/_four_columns_25_25_25_25_editor.html.haml
150
+ - app/views/alchemy/elements/bootybox/grid/_four_columns_25_25_25_25_view.html.haml
151
+ - app/views/alchemy/elements/bootybox/grid/_one_column_100_editor.html.haml
152
+ - app/views/alchemy/elements/bootybox/grid/_one_column_100_view.html.haml
153
+ - app/views/alchemy/elements/bootybox/grid/_three_columns_33_33_33_editor.html.haml
154
+ - app/views/alchemy/elements/bootybox/grid/_three_columns_33_33_33_view.html.haml
155
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_25_75_editor.html.haml
156
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_25_75_view.html.haml
157
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_50_50_editor.html.haml
158
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_50_50_view.html.haml
159
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_66_33_editor.html.haml
160
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_66_33_view.html.haml
161
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_75_25_editor.html.haml
162
+ - app/views/alchemy/elements/bootybox/grid/_two_columns_75_25_view.html.haml
163
+ - app/views/alchemy/elements/bootybox/layout/_element_container_editor.html.erb
164
+ - app/views/alchemy/elements/bootybox/layout/_element_container_view.html.erb
165
+ - app/views/alchemy/elements/bootybox/layout/_page_header_editor.html.erb
166
+ - app/views/alchemy/elements/bootybox/layout/_page_header_view.html.erb
167
+ - app/views/alchemy/elements/bootybox/layout/_seperator_editor.html.erb
168
+ - app/views/alchemy/elements/bootybox/layout/_seperator_view.html.erb
169
+ - app/views/alchemy/elements/bootybox/navi/_sub_navi_container_editor.html.erb
170
+ - app/views/alchemy/elements/bootybox/navi/_sub_navi_container_view.html.erb
171
+ - app/views/alchemy/elements/bootybox/navi/_sub_navi_item_editor.html.erb
172
+ - app/views/alchemy/elements/bootybox/navi/_sub_navi_item_view.html.erb
173
+ - app/views/alchemy/elements/bootybox/portfolio/_portfolio_container_editor.html.erb
174
+ - app/views/alchemy/elements/bootybox/portfolio/_portfolio_container_view.html.erb
175
+ - app/views/alchemy/elements/bootybox/portfolio/_portfolio_item_editor.html.erb
176
+ - app/views/alchemy/elements/bootybox/portfolio/_portfolio_item_view.html.erb
177
+ - app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_editor.html.erb
178
+ - app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_slide_editor.html.erb
179
+ - app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_slide_view.html.erb
180
+ - app/views/alchemy/elements/bootybox/slideshow/_image_slideshow_view.html.erb
181
+ - app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_container_editor.html.erb
182
+ - app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_container_view.html.erb
183
+ - app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_top_editor.html.erb
184
+ - app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_slide_top_view.html.erb
185
+ - app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_teaser_top_editor.html.erb
186
+ - app/views/alchemy/elements/bootybox/slideshow_top/_slideshow_teaser_top_view.html.erb
187
+ - app/views/alchemy/page_layouts/_default.html.erb
188
+ - app/views/bootybox/forms/_form_group_container.html.erb
189
+ - app/views/bootybox/forms/_form_group_input.html.erb
190
+ - app/views/bootybox/forms/_form_group_select.html.erb
191
+ - app/views/layouts/_footer.html.erb
192
+ - app/views/layouts/_navigation.html.erb
193
+ - app/views/layouts/_navigational_footer.html.erb
194
+ - app/views/layouts/application.html.erb
195
+ - config/elements.yml
196
+ - config/locales/bootybox.de.yml
197
+ - lib/bootybox.rb
198
+ - lib/bootybox/engine.rb
199
+ - lib/generators/bootybox/views/application_layout_generator.rb
200
+ - lib/tasks/bootybox.rake
201
+ homepage: http://www.el-digital.de
202
+ licenses: []
203
+ metadata: {}
204
+ post_install_message:
205
+ rdoc_options: []
206
+ require_paths:
207
+ - lib
208
+ required_ruby_version: !ruby/object:Gem::Requirement
209
+ requirements:
210
+ - - ">="
211
+ - !ruby/object:Gem::Version
212
+ version: '0'
213
+ required_rubygems_version: !ruby/object:Gem::Requirement
214
+ requirements:
215
+ - - ">="
216
+ - !ruby/object:Gem::Version
217
+ version: '0'
218
+ requirements: []
219
+ rubyforge_project:
220
+ rubygems_version: 2.6.12
221
+ signing_key:
222
+ specification_version: 4
223
+ summary: Default Bootstrap style Elements for Alchemy CMS
224
+ test_files: []