ecm_galleries 0.0.2

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 (36) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +44 -0
  4. data/Rakefile +22 -0
  5. data/app/assets/config/ecm_galleries_manifest.js +2 -0
  6. data/app/assets/javascripts/ecm/galleries/application.js +14 -0
  7. data/app/assets/stylesheets/ecm/galleries/application.css +15 -0
  8. data/app/controllers/ecm/galleries/application_controller.rb +5 -0
  9. data/app/controllers/ecm/galleries/application_resources_controller.rb +18 -0
  10. data/app/controllers/ecm/galleries/picture_galleries_controller.rb +17 -0
  11. data/app/helpers/ecm/galleries/application_helper.rb +7 -0
  12. data/app/jobs/ecm/galleries/application_job.rb +4 -0
  13. data/app/mailers/ecm/galleries/application_mailer.rb +6 -0
  14. data/app/models/ecm/galleries/application_record.rb +5 -0
  15. data/app/models/ecm/galleries/picture_detail.rb +6 -0
  16. data/app/models/ecm/galleries/picture_gallery.rb +53 -0
  17. data/app/view_helpers/ecm/galleries/view_helper.rb +26 -0
  18. data/app/views/ecm/galleries/picture_galleries/index.haml +16 -0
  19. data/app/views/ecm/galleries/picture_galleries/show.haml +15 -0
  20. data/app/views/ecm/galleries/view_helper/_render.html.haml +13 -0
  21. data/app/views/layouts/ecm/galleries/application.html.erb +14 -0
  22. data/config/initializers/assets.rb +1 -0
  23. data/config/locales/de.yml +42 -0
  24. data/config/locales/en.yml +42 -0
  25. data/config/routes.rb +9 -0
  26. data/db/migrate/20180301153325_create_ecm_galleries_picture_galleries.rb +11 -0
  27. data/db/migrate/20180302082402_create_ecm_galleries_picture_details.rb +14 -0
  28. data/lib/ecm/galleries/configuration.rb +9 -0
  29. data/lib/ecm/galleries/engine.rb +10 -0
  30. data/lib/ecm/galleries/version.rb +5 -0
  31. data/lib/ecm_galleries.rb +12 -0
  32. data/lib/generators/ecm/galleries/install/install_generator.rb +24 -0
  33. data/lib/generators/ecm/galleries/install/templates/initializer.rb +7 -0
  34. data/lib/generators/ecm/galleries/install/templates/routes.source +3 -0
  35. data/lib/tasks/ecm_galleries_tasks.rake +4 -0
  36. metadata +302 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 72ad55f12eac8452fb1f628b5a7d81228ec7030713d0ff91ecce7fd4dfcff72d
4
+ data.tar.gz: 3a76cf6266ae42b1fa21d21158321db0e9c4392076b423957bfca92b27ac9769
5
+ SHA512:
6
+ metadata.gz: c782fb3c9f8365721eaa61298801655fbf858f1d1ecb81a872cad6542b37a231a27b52102e17a47f47ce10362c80fa9b7fd0aa552d4d13668bafed2ebef5e585
7
+ data.tar.gz: 4bea794d5229afec0acaa9664259c39d94fd9ec26ddce2b20355a50951fffb6989ac1d0712a5deaf02e261f8d655555f024a3e1671fc7a735ec1783ec4285f56
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2018 Roberto Vasquez Angel
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # Ecm::Galleries
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Prerequisites
8
+
9
+ Make sure you have installed and configured active storage.
10
+
11
+ ## Installation
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'ecm_galleries'
16
+ ```
17
+
18
+ And then execute:
19
+ ```bash
20
+ $ bundle
21
+ ```
22
+
23
+ Or install it yourself as:
24
+ ```bash
25
+ $ gem install ecm_galleries
26
+ ```
27
+
28
+ Add migrations and migrate:
29
+
30
+ ```bash
31
+ $ rake ecm_galleries:install:migrations && rake db:migrate
32
+ ```
33
+
34
+ Install routes and initializer:
35
+
36
+ ```bash
37
+ $ rails g ecm:galleries:install
38
+ ```
39
+
40
+ ## Contributing
41
+ Contribution directions go here.
42
+
43
+ ## License
44
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,22 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Ecm::Galleries'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+ load 'rails/tasks/statistics.rake'
21
+
22
+ require 'bundler/gem_tasks'
@@ -0,0 +1,2 @@
1
+ //= link_directory ../javascripts/ecm/galleries .js
2
+ //= link_directory ../stylesheets/ecm/galleries .css
@@ -0,0 +1,14 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require activestorage
14
+ //= require_tree ./application
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree ./application
14
+ *= require_self
15
+ */
@@ -0,0 +1,5 @@
1
+ module Ecm::Galleries
2
+ class ApplicationController < Ecm::Galleries::Configuration.base_controller.constantize
3
+ protect_from_forgery with: :exception
4
+ end
5
+ end
@@ -0,0 +1,18 @@
1
+ module Ecm::Galleries
2
+ class ApplicationResourcesController < Ecm::Blog::Configuration.base_controller.constantize
3
+ include ::ResourcesController::RestActions
4
+ include ::ResourcesController::Resources
5
+ include ::ResourcesController::RestResourceUrls
6
+ include ::ResourcesController::ResourceInflections
7
+ include ::ResourcesController::LocationHistory
8
+ include ::Controller::QueryConditions
9
+
10
+ helper Twitter::Bootstrap::Components::Rails::V4::ComponentsHelper
11
+
12
+ private
13
+
14
+ def load_collection_scope
15
+ add_conditions_from_query(resource_class)
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,17 @@
1
+ module Ecm::Galleries
2
+ class PictureGalleriesController < ApplicationResourcesController
3
+ def self.resource_class
4
+ Ecm::Galleries::PictureGallery
5
+ end
6
+
7
+ private
8
+
9
+ def load_collection_scope
10
+ super.published
11
+ end
12
+
13
+ def load_resource_scope
14
+ super.published
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,7 @@
1
+ module Ecm::Galleries
2
+ module ApplicationHelper
3
+ def ecm_galleries_helper(context)
4
+ @ecm_galleries_helper ||= Ecm::Galleries::ViewHelper.new(context)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Galleries
2
+ class ApplicationJob < ActiveJob::Base
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ module Ecm::Galleries
2
+ class ApplicationMailer < ActionMailer::Base
3
+ default from: 'from@example.com'
4
+ layout 'mailer'
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Ecm::Galleries
2
+ class ApplicationRecord < ActiveRecord::Base
3
+ self.abstract_class = true
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ module Ecm::Galleries
2
+ class PictureDetail < ApplicationRecord
3
+ belongs_to :picture_gallery
4
+ belongs_to :asset, class_name: 'ActiveStorage::Attachment', dependent: :destroy
5
+ end
6
+ end
@@ -0,0 +1,53 @@
1
+ module Ecm::Galleries
2
+ class PictureGallery < ApplicationRecord
3
+ include ActsAsPublished::ActiveRecord
4
+
5
+ has_many_attached :assets
6
+
7
+ acts_as_published
8
+
9
+ validates :name, presence: true, uniqueness: true
10
+
11
+ module PictureDetails
12
+ extend ActiveSupport::Concern
13
+
14
+ included do
15
+ has_many :picture_details, dependent: :destroy
16
+ before_validation :cleanup_orphaned_picture_details
17
+ before_validation :ensure_picture_details
18
+ end
19
+
20
+ def picture_details_count
21
+ picture_details.count
22
+ end
23
+
24
+ private
25
+
26
+ def cleanup_orphaned_picture_details
27
+ picture_details.each do |picture_detail|
28
+ picture_detail.destroy if picture_detail.asset.nil?
29
+ end
30
+ end
31
+
32
+ def ensure_picture_details
33
+ (assets - picture_details.all.map(&:asset)).map do |asset|
34
+ build_picture_detail_for_asset(asset)
35
+ end
36
+ end
37
+
38
+ def build_picture_detail_for_asset(asset)
39
+ picture_details.build(asset: asset)
40
+ end
41
+ end
42
+
43
+ include PictureDetails
44
+
45
+ def human
46
+ name
47
+ end
48
+
49
+ def assets_count
50
+ assets.count
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,26 @@
1
+ module Ecm
2
+ module Galleries
3
+ class ViewHelper
4
+ def initialize(context)
5
+ @context = context
6
+ end
7
+
8
+ def render(options = {})
9
+ options.reverse_merge!(variant_options: {}, show_details: true)
10
+
11
+ name = options.delete(:name)
12
+ variant_options = options.delete(:variant_options)
13
+ show_details = options.delete(:show_details)
14
+
15
+ resource = Ecm::Galleries::PictureGallery.where(name: name).first
16
+ c.render partial: 'ecm/galleries/view_helper/render', locals: { resource: resource, variant_options: variant_options, show_details: show_details }
17
+ end
18
+
19
+ private
20
+
21
+ def c
22
+ @context
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,16 @@
1
+ %h1= resource_class.model_name.human(count: :other)
2
+
3
+ .row
4
+ - @collection.each do |picture_gallery|
5
+ .col-4
6
+ - image_options = if picture_gallery.assets.any?
7
+ - { src: main_app.url_for(picture_gallery.assets.first) }
8
+ - else
9
+ - {}
10
+ = bootstrap_card(image_options: image_options, additional_css_classes: 'text-center border-0') do
11
+ .card-body
12
+ %h5.card-title
13
+ = picture_gallery.name
14
+ %p.card-text
15
+ = picture_gallery.description
16
+ = link_to(t('.show'), picture_gallery, class: 'btn btn-primary')
@@ -0,0 +1,15 @@
1
+ %h1= @resource.name
2
+
3
+ .row
4
+ - @resource.picture_details.each do |picture_detail|
5
+ .col-lg-4.d-flex.align-items-stretch
6
+ = bootstrap_card(image_options: { src: main_app.url_for(picture_detail.asset)}, additional_css_classes: 'text-center border-0' ) do
7
+ .card-body
8
+ %h5.card-title
9
+ = picture_detail.title
10
+ %p.card-text
11
+ = picture_detail.description
12
+
13
+ .row.mt-4
14
+ .col-12
15
+ = link_to(t('.back'), last_location, class: 'btn btn-primary')
@@ -0,0 +1,13 @@
1
+ - if resource.nil?
2
+ - else
3
+ .row{ id: dom_id(resource), class: dom_class(resource) }
4
+ - resource.picture_details.each do |picture_detail|
5
+ .col-md-6.col-lg-3.d-flex.align-items-stretch.mb-4
6
+ = bootstrap_card(image_options: { src: main_app.url_for(picture_detail.asset.variant(variant_options))}, additional_css_classes: 'text-center border-0 w-100' ) do
7
+ - if show_details
8
+ .card-body
9
+ %h5.card-title
10
+ = picture_detail.title
11
+ %p.card-text
12
+ = picture_detail.description
13
+
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Ecm galleries</title>
5
+ <%= stylesheet_link_tag "ecm/galleries/application", media: "all" %>
6
+ <%= javascript_include_tag "ecm/galleries/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1 @@
1
+ Rails.application.config.assets.precompile += %w( ecm_galleries.css ecm_galleries.js )
@@ -0,0 +1,42 @@
1
+ de:
2
+ routes:
3
+ ecm_galleries_engine: bilder
4
+ picture_galleries: galerien
5
+ activerecord:
6
+ models:
7
+ ecm/galleries/picture_detail:
8
+ one: Bilddetail
9
+ other: Bilddetails
10
+ ecm/galleries/picture_gallery:
11
+ one: Bildgalerie
12
+ other: Bildgalerien
13
+ attributes:
14
+ ecm/galleries/picture_gallery:
15
+ id: ID
16
+ name: Name
17
+ description: Beschreibung
18
+ picture_details_count: Bilder
19
+ published: Veröffentlicht
20
+ published_at: Veröffentlicht am
21
+ created_at: Erstellt am
22
+ updated_at: Aktualisiert am
23
+ ecm/galleries/picture_detail:
24
+ id: ID
25
+ picture_gallery: Galerie
26
+ picture_gallery_id: Galerie
27
+ asset: Datei
28
+ asset_id: Datei
29
+ title: Titel
30
+ description: Beschreibung
31
+ position: Position
32
+ published: Veröffentlicht
33
+ published_at: Veröffentlicht am
34
+ created_at: Erstellt am
35
+ updated_at: Aktualisiert am
36
+ ecm:
37
+ galleries:
38
+ picture_galleries:
39
+ index:
40
+ show: Anzeigen
41
+ show:
42
+ back: Zurück
@@ -0,0 +1,42 @@
1
+ en:
2
+ routes:
3
+ ecm_galleries_engine: pictures
4
+ picture_galleries: galleries
5
+ activerecord:
6
+ models:
7
+ ecm/galleries/picture_detail:
8
+ one: Picture detail
9
+ other: Picture details
10
+ ecm/galleries/picture_gallery:
11
+ one: Gallery
12
+ other: Galleries
13
+ attributes:
14
+ ecm/galleries/picture_gallery:
15
+ id: ID
16
+ name: Name
17
+ description: Description
18
+ picture_details_count: Pictures
19
+ published: Published
20
+ published_at: Published at
21
+ created_at: Created at
22
+ updated_at: Updated at
23
+ ecm/galleries/picture_detail:
24
+ id: ID
25
+ picture_gallery: Gallery
26
+ picture_gallery_id: Gallery
27
+ asset: File
28
+ asset_id: File
29
+ title: Title
30
+ description: Description
31
+ position: Position
32
+ published: Published
33
+ published_at: Published at
34
+ created_at: Created at
35
+ updated_at: Updated at
36
+ ecm:
37
+ galleries:
38
+ picture_galleries:
39
+ index:
40
+ show: Show
41
+ show:
42
+ back: Back
data/config/routes.rb ADDED
@@ -0,0 +1,9 @@
1
+ Ecm::Galleries::Engine.routes.draw do
2
+ localized do
3
+ scope :ecm_galleries_engine do
4
+ resources :picture_galleries do
5
+ post :toggle_published, on: :member
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ class CreateEcmGalleriesPictureGalleries < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :ecm_galleries_picture_galleries do |t|
4
+ t.string :name
5
+ t.timestamp :published_at
6
+ t.text :description
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,14 @@
1
+ class CreateEcmGalleriesPictureDetails < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :ecm_galleries_picture_details do |t|
4
+ t.integer :picture_gallery_id
5
+ t.integer :asset_id
6
+ t.string :title
7
+ t.text :description
8
+ t.integer :position
9
+ t.timestamp :published_at
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ module Ecm::Galleries
2
+ module Configuration
3
+ def configure
4
+ yield self
5
+ end
6
+
7
+ mattr_accessor(:base_controller) { '::FrontendController' }
8
+ end
9
+ end
@@ -0,0 +1,10 @@
1
+ module Ecm::Galleries
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Ecm::Galleries
4
+
5
+ config.generators do |g|
6
+ g.test_framework :rspec
7
+ g.fixture_replacement :factory_bot, dir: 'spec/factories'
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ module Ecm
2
+ module Galleries
3
+ VERSION = '0.0.2'.freeze
4
+ end
5
+ end
@@ -0,0 +1,12 @@
1
+ require 'acts_as_published'
2
+ require 'route_translator'
3
+ require 'rails-add_ons'
4
+ require 'twitter_bootstrap_components_rails'
5
+
6
+ require 'ecm/galleries/configuration'
7
+ require "ecm/galleries/engine"
8
+
9
+ module Ecm::Galleries
10
+ # Your code goes here...
11
+ extend Configuration
12
+ end
@@ -0,0 +1,24 @@
1
+ module Ecm::Galleries
2
+ module Generators
3
+ class InstallGenerator < Rails::Generators::Base
4
+ desc 'Generates the initializer'
5
+
6
+ source_root File.expand_path('../templates', __FILE__)
7
+
8
+ attr_reader :base_controller_class_name
9
+
10
+ def initialize(*args)
11
+ super
12
+ @base_controller_class_name = ENV.fetch('BASE_CONTROLLER_CLASS_NAME') { '::FrontendController' }
13
+ end
14
+
15
+ def generate_initializer
16
+ template 'initializer.rb', 'config/initializers/ecm_galleries.rb'
17
+ end
18
+
19
+ def generate_routes
20
+ route File.read(File.join(File.expand_path('../templates', __FILE__), 'routes.source'))
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ Ecm::Galleries.configure do |config|
2
+ # Set the base controller for the page controller
3
+ #
4
+ # Default: config.base_controller = '<%= base_controller_class_name %>'
5
+ #
6
+ config.base_controller = '<%= base_controller_class_name %>'
7
+ end
@@ -0,0 +1,3 @@
1
+
2
+
3
+ mount Ecm::Galleries::Engine, at: '/'
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :ecm/galleries do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,302 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ecm_galleries
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Roberto Vasquez Angel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-10-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 5.2.0.rc1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 5.2.0.rc1
27
+ - !ruby/object:Gem::Dependency
28
+ name: acts_as_published
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: route_translator
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: rails-add_ons
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: twitter-bootstrap-components-rails
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: sqlite3
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: responders
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: factory_bot_rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: pry-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rails-i18n
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: rubocop
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: rspec-rails
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: shoulda-matchers
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: guard-bundler
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ - !ruby/object:Gem::Dependency
210
+ name: guard-rails
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ - !ruby/object:Gem::Dependency
224
+ name: guard-rspec
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ description:
238
+ email:
239
+ - roberto@vasquez-angel.de
240
+ executables: []
241
+ extensions: []
242
+ extra_rdoc_files: []
243
+ files:
244
+ - MIT-LICENSE
245
+ - README.md
246
+ - Rakefile
247
+ - app/assets/config/ecm_galleries_manifest.js
248
+ - app/assets/javascripts/ecm/galleries/application.js
249
+ - app/assets/stylesheets/ecm/galleries/application.css
250
+ - app/controllers/ecm/galleries/application_controller.rb
251
+ - app/controllers/ecm/galleries/application_resources_controller.rb
252
+ - app/controllers/ecm/galleries/picture_galleries_controller.rb
253
+ - app/helpers/ecm/galleries/application_helper.rb
254
+ - app/jobs/ecm/galleries/application_job.rb
255
+ - app/mailers/ecm/galleries/application_mailer.rb
256
+ - app/models/ecm/galleries/application_record.rb
257
+ - app/models/ecm/galleries/picture_detail.rb
258
+ - app/models/ecm/galleries/picture_gallery.rb
259
+ - app/view_helpers/ecm/galleries/view_helper.rb
260
+ - app/views/ecm/galleries/picture_galleries/index.haml
261
+ - app/views/ecm/galleries/picture_galleries/show.haml
262
+ - app/views/ecm/galleries/view_helper/_render.html.haml
263
+ - app/views/layouts/ecm/galleries/application.html.erb
264
+ - config/initializers/assets.rb
265
+ - config/locales/de.yml
266
+ - config/locales/en.yml
267
+ - config/routes.rb
268
+ - db/migrate/20180301153325_create_ecm_galleries_picture_galleries.rb
269
+ - db/migrate/20180302082402_create_ecm_galleries_picture_details.rb
270
+ - lib/ecm/galleries/configuration.rb
271
+ - lib/ecm/galleries/engine.rb
272
+ - lib/ecm/galleries/version.rb
273
+ - lib/ecm_galleries.rb
274
+ - lib/generators/ecm/galleries/install/install_generator.rb
275
+ - lib/generators/ecm/galleries/install/templates/initializer.rb
276
+ - lib/generators/ecm/galleries/install/templates/routes.source
277
+ - lib/tasks/ecm_galleries_tasks.rake
278
+ homepage: https://github.com/robotex82/ecm_galleries
279
+ licenses:
280
+ - MIT
281
+ metadata: {}
282
+ post_install_message:
283
+ rdoc_options: []
284
+ require_paths:
285
+ - lib
286
+ required_ruby_version: !ruby/object:Gem::Requirement
287
+ requirements:
288
+ - - ">="
289
+ - !ruby/object:Gem::Version
290
+ version: '0'
291
+ required_rubygems_version: !ruby/object:Gem::Requirement
292
+ requirements:
293
+ - - ">="
294
+ - !ruby/object:Gem::Version
295
+ version: '0'
296
+ requirements: []
297
+ rubyforge_project:
298
+ rubygems_version: 2.7.6
299
+ signing_key:
300
+ specification_version: 4
301
+ summary: Ecm Galleries Module.
302
+ test_files: []