rails_event 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +36 -0
- data/Rakefile +32 -0
- data/app/controllers/eventual/admin/base_controller.rb +4 -0
- data/app/controllers/eventual/admin/bookings_controller.rb +43 -0
- data/app/controllers/eventual/admin/crowd_members_controller.rb +43 -0
- data/app/controllers/eventual/admin/crowds_controller.rb +58 -0
- data/app/controllers/eventual/admin/event_crowds_controller.rb +71 -0
- data/app/controllers/eventual/admin/event_items_controller.rb +58 -0
- data/app/controllers/eventual/admin/event_participants_controller.rb +101 -0
- data/app/controllers/eventual/admin/event_taxons_controller.rb +55 -0
- data/app/controllers/eventual/admin/events_controller.rb +91 -0
- data/app/controllers/eventual/admin/place_taxons_controller.rb +57 -0
- data/app/controllers/eventual/admin/places_controller.rb +59 -0
- data/app/controllers/eventual/admin/plan_attenders_controller.rb +65 -0
- data/app/controllers/eventual/admin/plan_items_controller.rb +84 -0
- data/app/controllers/eventual/admin/plans_controller.rb +127 -0
- data/app/controllers/eventual/admin/seats_controller.rb +58 -0
- data/app/controllers/eventual/admin/time_items_controller.rb +82 -0
- data/app/controllers/eventual/admin/time_lists_controller.rb +72 -0
- data/app/controllers/eventual/base_controller.rb +4 -0
- data/app/controllers/eventual/me/base_controller.rb +4 -0
- data/app/controllers/eventual/me/plan_items_controller.rb +58 -0
- data/app/controllers/eventual/my/base_controller.rb +4 -0
- data/app/controllers/eventual/my/plan_items_controller.rb +55 -0
- data/app/controllers/eventual/places_controller.rb +27 -0
- data/app/controllers/eventual/time_controller.rb +14 -0
- data/app/models/eventual/application_record.rb +5 -0
- data/app/models/eventual/booking.rb +5 -0
- data/app/models/eventual/crowd.rb +5 -0
- data/app/models/eventual/crowd_member.rb +5 -0
- data/app/models/eventual/event.rb +6 -0
- data/app/models/eventual/event_crowd.rb +5 -0
- data/app/models/eventual/event_grant.rb +5 -0
- data/app/models/eventual/event_item.rb +5 -0
- data/app/models/eventual/event_participant.rb +6 -0
- data/app/models/eventual/event_taxon.rb +5 -0
- data/app/models/eventual/ext/recurrence.rb +86 -0
- data/app/models/eventual/model/agency.rb +18 -0
- data/app/models/eventual/model/booked.rb +10 -0
- data/app/models/eventual/model/booker.rb +15 -0
- data/app/models/eventual/model/booking.rb +37 -0
- data/app/models/eventual/model/crowd.rb +21 -0
- data/app/models/eventual/model/crowd_member.rb +20 -0
- data/app/models/eventual/model/event.rb +48 -0
- data/app/models/eventual/model/event_crowd.rb +54 -0
- data/app/models/eventual/model/event_grant.rb +14 -0
- data/app/models/eventual/model/event_item.rb +30 -0
- data/app/models/eventual/model/event_participant.rb +63 -0
- data/app/models/eventual/model/event_taxon.rb +13 -0
- data/app/models/eventual/model/member.rb +18 -0
- data/app/models/eventual/model/occurrence.rb +62 -0
- data/app/models/eventual/model/place.rb +25 -0
- data/app/models/eventual/model/place_taxon.rb +18 -0
- data/app/models/eventual/model/plan.rb +147 -0
- data/app/models/eventual/model/plan_attender.rb +31 -0
- data/app/models/eventual/model/plan_item.rb +84 -0
- data/app/models/eventual/model/plan_participant/crowd_participant.rb +17 -0
- data/app/models/eventual/model/plan_participant/normal_participant.rb +9 -0
- data/app/models/eventual/model/plan_participant.rb +30 -0
- data/app/models/eventual/model/planned.rb +11 -0
- data/app/models/eventual/model/planning.rb +44 -0
- data/app/models/eventual/model/recurrence.rb +64 -0
- data/app/models/eventual/model/seat.rb +17 -0
- data/app/models/eventual/model/time_item.rb +46 -0
- data/app/models/eventual/model/time_list.rb +57 -0
- data/app/models/eventual/place.rb +5 -0
- data/app/models/eventual/place_taxon.rb +6 -0
- data/app/models/eventual/plan.rb +7 -0
- data/app/models/eventual/plan_attender.rb +5 -0
- data/app/models/eventual/plan_item.rb +6 -0
- data/app/models/eventual/plan_participant.rb +5 -0
- data/app/models/eventual/seat.rb +5 -0
- data/app/models/eventual/time_item.rb +5 -0
- data/app/models/eventual/time_list.rb +5 -0
- data/app/models/eventual.rb +11 -0
- data/app/models/plan_participant/eventual/crowd_participant.rb +5 -0
- data/app/models/plan_participant/eventual/normal_participant.rb +5 -0
- data/app/views/admin/_event_nav.html.erb +14 -0
- data/app/views/admin/_nav_event.html.erb +9 -0
- data/app/views/eventual/admin/base/_nav.html.erb +3 -0
- data/app/views/eventual/admin/bookings/_booking.json.jbuilder +12 -0
- data/app/views/eventual/admin/bookings/_filter.html.erb +6 -0
- data/app/views/eventual/admin/bookings/_form.html.erb +8 -0
- data/app/views/eventual/admin/bookings/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/bookings/_show_table.html.erb +28 -0
- data/app/views/eventual/admin/bookings/index.html.erb +43 -0
- data/app/views/eventual/admin/bookings/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/crowd_members/_filter_form.html.erb +7 -0
- data/app/views/eventual/admin/crowd_members/_form.html.erb +4 -0
- data/app/views/eventual/admin/crowd_members/index.html.erb +34 -0
- data/app/views/eventual/admin/crowds/_crowd.json.jbuilder +8 -0
- data/app/views/eventual/admin/crowds/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/crowds/_filter_form.html.erb +10 -0
- data/app/views/eventual/admin/crowds/_form.html.erb +4 -0
- data/app/views/eventual/admin/crowds/_index_tbody.html.erb +5 -0
- data/app/views/eventual/admin/crowds/_index_thead.html.erb +3 -0
- data/app/views/eventual/admin/crowds/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/crowds/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/crowds/_show_table.html.erb +20 -0
- data/app/views/eventual/admin/crowds/index.html.erb +5 -0
- data/app/views/eventual/admin/crowds/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/event_crowds/_breadcrumb.html.erb +7 -0
- data/app/views/eventual/admin/event_crowds/_crowd_student.html.erb +18 -0
- data/app/views/eventual/admin/event_crowds/_edit_form.html.erb +15 -0
- data/app/views/eventual/admin/event_crowds/_index_tbody.html.erb +19 -0
- data/app/views/eventual/admin/event_crowds/_index_thead.html.erb +10 -0
- data/app/views/eventual/admin/event_crowds/_new_form.html.erb +6 -0
- data/app/views/eventual/admin/event_crowds/_show_table.html.erb +12 -0
- data/app/views/eventual/admin/event_crowds/index.html.erb +2 -0
- data/app/views/eventual/admin/event_items/_breadcrumb.html.erb +7 -0
- data/app/views/eventual/admin/event_items/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/event_items/_event_item.json.jbuilder +12 -0
- data/app/views/eventual/admin/event_items/_filter_form.html.erb +9 -0
- data/app/views/eventual/admin/event_items/_form.html.erb +12 -0
- data/app/views/eventual/admin/event_items/_index_tbody.html.erb +8 -0
- data/app/views/eventual/admin/event_items/_index_thead.html.erb +5 -0
- data/app/views/eventual/admin/event_items/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/event_items/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/event_items/_show_table.html.erb +12 -0
- data/app/views/eventual/admin/event_items/index.html.erb +1 -0
- data/app/views/eventual/admin/event_items/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/event_participants/_breadcrumb.html.erb +7 -0
- data/app/views/eventual/admin/event_participants/_button.html.erb +3 -0
- data/app/views/eventual/admin/event_participants/_filter_form.html.erb +9 -0
- data/app/views/eventual/admin/event_participants/_filter_table.html.erb +11 -0
- data/app/views/eventual/admin/event_participants/_form.html.erb +4 -0
- data/app/views/eventual/admin/event_participants/_index_tbody.html.erb +15 -0
- data/app/views/eventual/admin/event_participants/_index_thead.html.erb +5 -0
- data/app/views/eventual/admin/event_participants/index.html.erb +1 -0
- data/app/views/eventual/admin/event_taxons/_breadcrumb.html.erb +6 -0
- data/app/views/eventual/admin/event_taxons/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/event_taxons/_event_taxon.json.jbuilder +5 -0
- data/app/views/eventual/admin/event_taxons/_filter_form.html.erb +10 -0
- data/app/views/eventual/admin/event_taxons/_form.html.erb +2 -0
- data/app/views/eventual/admin/event_taxons/_index_tbody.html.erb +1 -0
- data/app/views/eventual/admin/event_taxons/_index_thead.html.erb +2 -0
- data/app/views/eventual/admin/event_taxons/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/event_taxons/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/event_taxons/index.html.erb +5 -0
- data/app/views/eventual/admin/event_taxons/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/events/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/events/_event.json.jbuilder +17 -0
- data/app/views/eventual/admin/events/_filter_form.html.erb +9 -0
- data/app/views/eventual/admin/events/_filter_table.html.erb +15 -0
- data/app/views/eventual/admin/events/_form.html.erb +11 -0
- data/app/views/eventual/admin/events/_index_tbody.html.erb +11 -0
- data/app/views/eventual/admin/events/_index_thead.html.erb +10 -0
- data/app/views/eventual/admin/events/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/events/_show/_breadcrumb.html.erb +7 -0
- data/app/views/eventual/admin/events/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/events/create.json.jbuilder +1 -0
- data/app/views/eventual/admin/events/index.html.erb +5 -0
- data/app/views/eventual/admin/events/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/events/repeat_form.js.erb +14 -0
- data/app/views/eventual/admin/events/show.html.erb +16 -0
- data/app/views/eventual/admin/place_taxons/_breadcrumb.html.erb +6 -0
- data/app/views/eventual/admin/place_taxons/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/place_taxons/_filter_form.html.erb +9 -0
- data/app/views/eventual/admin/place_taxons/_form.html.erb +6 -0
- data/app/views/eventual/admin/place_taxons/_index_tbody.html.erb +17 -0
- data/app/views/eventual/admin/place_taxons/_index_thead.html.erb +4 -0
- data/app/views/eventual/admin/place_taxons/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/place_taxons/_show_table.html.erb +12 -0
- data/app/views/eventual/admin/place_taxons/index.html.erb +5 -0
- data/app/views/eventual/admin/places/_breadcrumb.html.erb +5 -0
- data/app/views/eventual/admin/places/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/places/_filter_form.html.erb +10 -0
- data/app/views/eventual/admin/places/_form.html.erb +4 -0
- data/app/views/eventual/admin/places/_index_tbody.html.erb +6 -0
- data/app/views/eventual/admin/places/_index_thead.html.erb +10 -0
- data/app/views/eventual/admin/places/_index_tr.html.erb +19 -0
- data/app/views/eventual/admin/places/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/places/_place.json.jbuilder +6 -0
- data/app/views/eventual/admin/places/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/places/_show_table.html.erb +8 -0
- data/app/views/eventual/admin/places/index.html.erb +5 -0
- data/app/views/eventual/admin/places/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/plan_attenders/_breadcrumb.html.erb +9 -0
- data/app/views/eventual/admin/plan_attenders/_course_student.json.jbuilder +11 -0
- data/app/views/eventual/admin/plan_attenders/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/plan_attenders/_filter.html.erb +6 -0
- data/app/views/eventual/admin/plan_attenders/_form.html.erb +5 -0
- data/app/views/eventual/admin/plan_attenders/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/plan_attenders/_plan_attender.json.jbuilder +9 -0
- data/app/views/eventual/admin/plan_attenders/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/plan_attenders/_show_table.html.erb +16 -0
- data/app/views/eventual/admin/plan_attenders/absent.json.jbuilder +0 -0
- data/app/views/eventual/admin/plan_attenders/attend.json.jbuilder +0 -0
- data/app/views/eventual/admin/plan_attenders/index.html.erb +51 -0
- data/app/views/eventual/admin/plan_attenders/index.json.jbuilder +2 -0
- data/app/views/eventual/admin/plan_attenders/indexs.json.jbuilder +6 -0
- data/app/views/eventual/admin/plan_items/_breadcrumb.html.erb +8 -0
- data/app/views/eventual/admin/plan_items/_edit.html.erb +23 -0
- data/app/views/eventual/admin/plan_items/_filter.html.erb +11 -0
- data/app/views/eventual/admin/plan_items/_menu.html.erb +4 -0
- data/app/views/eventual/admin/plan_items/_plan.html.erb +6 -0
- data/app/views/eventual/admin/plan_items/_plan_item.json.jbuilder +12 -0
- data/app/views/eventual/admin/plan_items/_plan_items.json.jbuilder +13 -0
- data/app/views/eventual/admin/plan_items/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/plan_items/_show_table.html.erb +20 -0
- data/app/views/eventual/admin/plan_items/index.html.erb +72 -0
- data/app/views/eventual/admin/plan_items/index.json.jbuilder +3 -0
- data/app/views/eventual/admin/plan_items/qrcode.js.erb +1 -0
- data/app/views/eventual/admin/plans/_edit_item.html.erb +24 -0
- data/app/views/eventual/admin/plans/_filter.html.erb +8 -0
- data/app/views/eventual/admin/plans/_index.html.erb +31 -0
- data/app/views/eventual/admin/plans/_plan.json.jbuilder +12 -0
- data/app/views/eventual/admin/plans/_select_table.html.erb +30 -0
- data/app/views/eventual/admin/plans/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/plans/_show_item.html.erb +22 -0
- data/app/views/eventual/admin/plans/_show_table.html.erb +20 -0
- data/app/views/eventual/admin/plans/_table.html.erb +34 -0
- data/app/views/eventual/admin/plans/calendar.js.erb +12 -0
- data/app/views/eventual/admin/plans/index.html.erb +3 -0
- data/app/views/eventual/admin/plans/index.js.erb +42 -0
- data/app/views/eventual/admin/plans/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/plans/show.html.erb +3 -0
- data/app/views/eventual/admin/seats/_breadcrumb.html.erb +0 -0
- data/app/views/eventual/admin/seats/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/seats/_filter_form.html.erb +9 -0
- data/app/views/eventual/admin/seats/_form.html.erb +4 -0
- data/app/views/eventual/admin/seats/_index_tbody.html.erb +3 -0
- data/app/views/eventual/admin/seats/_index_thead.html.erb +4 -0
- data/app/views/eventual/admin/seats/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/seats/_show_table.html.erb +12 -0
- data/app/views/eventual/admin/seats/index.html.erb +5 -0
- data/app/views/eventual/admin/time_items/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/time_items/_form.html.erb +3 -0
- data/app/views/eventual/admin/time_items/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/time_items/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/time_items/_show_table.html.erb +12 -0
- data/app/views/eventual/admin/time_items/_time_item.json.jbuilder +3 -0
- data/app/views/eventual/admin/time_items/_time_items_options.html.erb +1 -0
- data/app/views/eventual/admin/time_items/default.json.jbuilder +1 -0
- data/app/views/eventual/admin/time_items/index.json.jbuilder +1 -0
- data/app/views/eventual/admin/time_items/select.js.erb +3 -0
- data/app/views/eventual/admin/time_lists/_edit_form.html.erb +4 -0
- data/app/views/eventual/admin/time_lists/_filter.html.erb +8 -0
- data/app/views/eventual/admin/time_lists/_form.html.erb +4 -0
- data/app/views/eventual/admin/time_lists/_index_tbody.html.erb +14 -0
- data/app/views/eventual/admin/time_lists/_index_thead.html.erb +8 -0
- data/app/views/eventual/admin/time_lists/_index_tr.html.erb +13 -0
- data/app/views/eventual/admin/time_lists/_new_form.html.erb +4 -0
- data/app/views/eventual/admin/time_lists/_show.json.jbuilder +1 -0
- data/app/views/eventual/admin/time_lists/_show_table.html.erb +8 -0
- data/app/views/eventual/admin/time_lists/_time_items.html.erb +27 -0
- data/app/views/eventual/admin/time_lists/_time_list.json.jbuilder +10 -0
- data/app/views/eventual/admin/time_lists/index.html.erb +5 -0
- data/app/views/eventual/admin/time_lists/index.json.jbuilder +1 -0
- data/app/views/eventual/me/plan_items/_plan_item.json.jbuilder +14 -0
- data/app/views/eventual/me/plan_items/index.json.jbuilder +3 -0
- data/app/views/eventual/my/plans/_show_table.html.erb +32 -0
- data/app/views/eventual/my/plans/_table.html.erb +34 -0
- data/app/views/eventual/my/plans/_time_plan.json.jbuilder +8 -0
- data/app/views/eventual/my/plans/calendar.js.erb +12 -0
- data/app/views/eventual/my/plans/edit.html.erb +9 -0
- data/app/views/eventual/my/plans/edit.js.erb +3 -0
- data/app/views/eventual/my/plans/index-ready.js +11 -0
- data/app/views/eventual/my/plans/index.html.erb +26 -0
- data/app/views/eventual/my/plans/index.js +35 -0
- data/app/views/eventual/my/plans/index.json.jbuilder +1 -0
- data/app/views/eventual/my/plans/new.html.erb +9 -0
- data/app/views/eventual/my/plans/show.html.erb +7 -0
- data/app/views/eventual/my/plans/show.js.erb +12 -0
- data/app/views/eventual/my/plans/show.json.jbuilder +1 -0
- data/app/views/eventual/places/_filter_table.html.erb +11 -0
- data/app/views/eventual/places/index.html.erb +35 -0
- data/app/views/eventual/places/show.html.erb +0 -0
- data/app/views/eventual/time/_finish_at.html.erb +1 -0
- data/app/views/eventual/time/_finish_at_once.html.erb +1 -0
- data/app/views/eventual/time/_form.html.erb +15 -0
- data/app/views/eventual/time/_monthly_checkboxes.html.erb +1 -0
- data/app/views/eventual/time/_once_date.html.erb +1 -0
- data/app/views/eventual/time/_start_at.html.erb +1 -0
- data/app/views/eventual/time/_start_at_once.html.erb +1 -0
- data/app/views/eventual/time/_weekly_checkboxes.html.erb +1 -0
- data/app/views/eventual/time/index.css +5 -0
- data/app/views/eventual/time/repeat_form.js.erb +14 -0
- data/app/views/eventual/time/show.css +3 -0
- data/config/locales/en.enum.yml +8 -0
- data/config/locales/zh.attributes.yml +50 -0
- data/config/locales/zh.controller.yml +59 -0
- data/config/locales/zh.enum.yml +12 -0
- data/config/routes.rb +98 -0
- data/lib/rails_event/config.rb +13 -0
- data/lib/rails_event/engine.rb +29 -0
- data/lib/rails_event/version.rb +5 -0
- data/lib/rails_event.rb +4 -0
- metadata +346 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'rails_com'
|
|
4
|
+
module RailsEvent
|
|
5
|
+
class Engine < ::Rails::Engine
|
|
6
|
+
|
|
7
|
+
config.autoload_paths += Dir[
|
|
8
|
+
"#{config.root}/app/models/rails_event/concerns",
|
|
9
|
+
"#{config.root}/app/models/plan_participant"
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
config.factory_bot.definition_file_paths += Dir["#{config.root}/test/factories"] if defined?(FactoryBotRails)
|
|
13
|
+
|
|
14
|
+
config.generators do |g|
|
|
15
|
+
g.rails = {
|
|
16
|
+
assets: false,
|
|
17
|
+
stylesheets: false,
|
|
18
|
+
helper: false,
|
|
19
|
+
jbuilder: true
|
|
20
|
+
}
|
|
21
|
+
g.test_unit = {
|
|
22
|
+
fixture: true,
|
|
23
|
+
fixture_replacement: :factory_girl
|
|
24
|
+
}
|
|
25
|
+
g.templates.unshift File.expand_path('lib/templates', RailsCom::Engine.root)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
end
|
|
29
|
+
end
|
data/lib/rails_event.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rails_event
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- qinmingyuan
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2021-09-13 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails_com
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.2'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.2'
|
|
27
|
+
description: Description of RailsEvent.
|
|
28
|
+
email:
|
|
29
|
+
- mingyuan0715@foxmail.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- LICENSE
|
|
35
|
+
- README.md
|
|
36
|
+
- Rakefile
|
|
37
|
+
- app/controllers/eventual/admin/base_controller.rb
|
|
38
|
+
- app/controllers/eventual/admin/bookings_controller.rb
|
|
39
|
+
- app/controllers/eventual/admin/crowd_members_controller.rb
|
|
40
|
+
- app/controllers/eventual/admin/crowds_controller.rb
|
|
41
|
+
- app/controllers/eventual/admin/event_crowds_controller.rb
|
|
42
|
+
- app/controllers/eventual/admin/event_items_controller.rb
|
|
43
|
+
- app/controllers/eventual/admin/event_participants_controller.rb
|
|
44
|
+
- app/controllers/eventual/admin/event_taxons_controller.rb
|
|
45
|
+
- app/controllers/eventual/admin/events_controller.rb
|
|
46
|
+
- app/controllers/eventual/admin/place_taxons_controller.rb
|
|
47
|
+
- app/controllers/eventual/admin/places_controller.rb
|
|
48
|
+
- app/controllers/eventual/admin/plan_attenders_controller.rb
|
|
49
|
+
- app/controllers/eventual/admin/plan_items_controller.rb
|
|
50
|
+
- app/controllers/eventual/admin/plans_controller.rb
|
|
51
|
+
- app/controllers/eventual/admin/seats_controller.rb
|
|
52
|
+
- app/controllers/eventual/admin/time_items_controller.rb
|
|
53
|
+
- app/controllers/eventual/admin/time_lists_controller.rb
|
|
54
|
+
- app/controllers/eventual/base_controller.rb
|
|
55
|
+
- app/controllers/eventual/me/base_controller.rb
|
|
56
|
+
- app/controllers/eventual/me/plan_items_controller.rb
|
|
57
|
+
- app/controllers/eventual/my/base_controller.rb
|
|
58
|
+
- app/controllers/eventual/my/plan_items_controller.rb
|
|
59
|
+
- app/controllers/eventual/places_controller.rb
|
|
60
|
+
- app/controllers/eventual/time_controller.rb
|
|
61
|
+
- app/models/eventual.rb
|
|
62
|
+
- app/models/eventual/application_record.rb
|
|
63
|
+
- app/models/eventual/booking.rb
|
|
64
|
+
- app/models/eventual/crowd.rb
|
|
65
|
+
- app/models/eventual/crowd_member.rb
|
|
66
|
+
- app/models/eventual/event.rb
|
|
67
|
+
- app/models/eventual/event_crowd.rb
|
|
68
|
+
- app/models/eventual/event_grant.rb
|
|
69
|
+
- app/models/eventual/event_item.rb
|
|
70
|
+
- app/models/eventual/event_participant.rb
|
|
71
|
+
- app/models/eventual/event_taxon.rb
|
|
72
|
+
- app/models/eventual/ext/recurrence.rb
|
|
73
|
+
- app/models/eventual/model/agency.rb
|
|
74
|
+
- app/models/eventual/model/booked.rb
|
|
75
|
+
- app/models/eventual/model/booker.rb
|
|
76
|
+
- app/models/eventual/model/booking.rb
|
|
77
|
+
- app/models/eventual/model/crowd.rb
|
|
78
|
+
- app/models/eventual/model/crowd_member.rb
|
|
79
|
+
- app/models/eventual/model/event.rb
|
|
80
|
+
- app/models/eventual/model/event_crowd.rb
|
|
81
|
+
- app/models/eventual/model/event_grant.rb
|
|
82
|
+
- app/models/eventual/model/event_item.rb
|
|
83
|
+
- app/models/eventual/model/event_participant.rb
|
|
84
|
+
- app/models/eventual/model/event_taxon.rb
|
|
85
|
+
- app/models/eventual/model/member.rb
|
|
86
|
+
- app/models/eventual/model/occurrence.rb
|
|
87
|
+
- app/models/eventual/model/place.rb
|
|
88
|
+
- app/models/eventual/model/place_taxon.rb
|
|
89
|
+
- app/models/eventual/model/plan.rb
|
|
90
|
+
- app/models/eventual/model/plan_attender.rb
|
|
91
|
+
- app/models/eventual/model/plan_item.rb
|
|
92
|
+
- app/models/eventual/model/plan_participant.rb
|
|
93
|
+
- app/models/eventual/model/plan_participant/crowd_participant.rb
|
|
94
|
+
- app/models/eventual/model/plan_participant/normal_participant.rb
|
|
95
|
+
- app/models/eventual/model/planned.rb
|
|
96
|
+
- app/models/eventual/model/planning.rb
|
|
97
|
+
- app/models/eventual/model/recurrence.rb
|
|
98
|
+
- app/models/eventual/model/seat.rb
|
|
99
|
+
- app/models/eventual/model/time_item.rb
|
|
100
|
+
- app/models/eventual/model/time_list.rb
|
|
101
|
+
- app/models/eventual/place.rb
|
|
102
|
+
- app/models/eventual/place_taxon.rb
|
|
103
|
+
- app/models/eventual/plan.rb
|
|
104
|
+
- app/models/eventual/plan_attender.rb
|
|
105
|
+
- app/models/eventual/plan_item.rb
|
|
106
|
+
- app/models/eventual/plan_participant.rb
|
|
107
|
+
- app/models/eventual/seat.rb
|
|
108
|
+
- app/models/eventual/time_item.rb
|
|
109
|
+
- app/models/eventual/time_list.rb
|
|
110
|
+
- app/models/plan_participant/eventual/crowd_participant.rb
|
|
111
|
+
- app/models/plan_participant/eventual/normal_participant.rb
|
|
112
|
+
- app/views/admin/_event_nav.html.erb
|
|
113
|
+
- app/views/admin/_nav_event.html.erb
|
|
114
|
+
- app/views/eventual/admin/base/_nav.html.erb
|
|
115
|
+
- app/views/eventual/admin/bookings/_booking.json.jbuilder
|
|
116
|
+
- app/views/eventual/admin/bookings/_filter.html.erb
|
|
117
|
+
- app/views/eventual/admin/bookings/_form.html.erb
|
|
118
|
+
- app/views/eventual/admin/bookings/_show.json.jbuilder
|
|
119
|
+
- app/views/eventual/admin/bookings/_show_table.html.erb
|
|
120
|
+
- app/views/eventual/admin/bookings/index.html.erb
|
|
121
|
+
- app/views/eventual/admin/bookings/index.json.jbuilder
|
|
122
|
+
- app/views/eventual/admin/crowd_members/_filter_form.html.erb
|
|
123
|
+
- app/views/eventual/admin/crowd_members/_form.html.erb
|
|
124
|
+
- app/views/eventual/admin/crowd_members/index.html.erb
|
|
125
|
+
- app/views/eventual/admin/crowds/_crowd.json.jbuilder
|
|
126
|
+
- app/views/eventual/admin/crowds/_edit_form.html.erb
|
|
127
|
+
- app/views/eventual/admin/crowds/_filter_form.html.erb
|
|
128
|
+
- app/views/eventual/admin/crowds/_form.html.erb
|
|
129
|
+
- app/views/eventual/admin/crowds/_index_tbody.html.erb
|
|
130
|
+
- app/views/eventual/admin/crowds/_index_thead.html.erb
|
|
131
|
+
- app/views/eventual/admin/crowds/_new_form.html.erb
|
|
132
|
+
- app/views/eventual/admin/crowds/_show.json.jbuilder
|
|
133
|
+
- app/views/eventual/admin/crowds/_show_table.html.erb
|
|
134
|
+
- app/views/eventual/admin/crowds/index.html.erb
|
|
135
|
+
- app/views/eventual/admin/crowds/index.json.jbuilder
|
|
136
|
+
- app/views/eventual/admin/event_crowds/_breadcrumb.html.erb
|
|
137
|
+
- app/views/eventual/admin/event_crowds/_crowd_student.html.erb
|
|
138
|
+
- app/views/eventual/admin/event_crowds/_edit_form.html.erb
|
|
139
|
+
- app/views/eventual/admin/event_crowds/_index_tbody.html.erb
|
|
140
|
+
- app/views/eventual/admin/event_crowds/_index_thead.html.erb
|
|
141
|
+
- app/views/eventual/admin/event_crowds/_new_form.html.erb
|
|
142
|
+
- app/views/eventual/admin/event_crowds/_show_table.html.erb
|
|
143
|
+
- app/views/eventual/admin/event_crowds/index.html.erb
|
|
144
|
+
- app/views/eventual/admin/event_items/_breadcrumb.html.erb
|
|
145
|
+
- app/views/eventual/admin/event_items/_edit_form.html.erb
|
|
146
|
+
- app/views/eventual/admin/event_items/_event_item.json.jbuilder
|
|
147
|
+
- app/views/eventual/admin/event_items/_filter_form.html.erb
|
|
148
|
+
- app/views/eventual/admin/event_items/_form.html.erb
|
|
149
|
+
- app/views/eventual/admin/event_items/_index_tbody.html.erb
|
|
150
|
+
- app/views/eventual/admin/event_items/_index_thead.html.erb
|
|
151
|
+
- app/views/eventual/admin/event_items/_new_form.html.erb
|
|
152
|
+
- app/views/eventual/admin/event_items/_show.json.jbuilder
|
|
153
|
+
- app/views/eventual/admin/event_items/_show_table.html.erb
|
|
154
|
+
- app/views/eventual/admin/event_items/index.html.erb
|
|
155
|
+
- app/views/eventual/admin/event_items/index.json.jbuilder
|
|
156
|
+
- app/views/eventual/admin/event_participants/_breadcrumb.html.erb
|
|
157
|
+
- app/views/eventual/admin/event_participants/_button.html.erb
|
|
158
|
+
- app/views/eventual/admin/event_participants/_filter_form.html.erb
|
|
159
|
+
- app/views/eventual/admin/event_participants/_filter_table.html.erb
|
|
160
|
+
- app/views/eventual/admin/event_participants/_form.html.erb
|
|
161
|
+
- app/views/eventual/admin/event_participants/_index_tbody.html.erb
|
|
162
|
+
- app/views/eventual/admin/event_participants/_index_thead.html.erb
|
|
163
|
+
- app/views/eventual/admin/event_participants/index.html.erb
|
|
164
|
+
- app/views/eventual/admin/event_taxons/_breadcrumb.html.erb
|
|
165
|
+
- app/views/eventual/admin/event_taxons/_edit_form.html.erb
|
|
166
|
+
- app/views/eventual/admin/event_taxons/_event_taxon.json.jbuilder
|
|
167
|
+
- app/views/eventual/admin/event_taxons/_filter_form.html.erb
|
|
168
|
+
- app/views/eventual/admin/event_taxons/_form.html.erb
|
|
169
|
+
- app/views/eventual/admin/event_taxons/_index_tbody.html.erb
|
|
170
|
+
- app/views/eventual/admin/event_taxons/_index_thead.html.erb
|
|
171
|
+
- app/views/eventual/admin/event_taxons/_new_form.html.erb
|
|
172
|
+
- app/views/eventual/admin/event_taxons/_show.json.jbuilder
|
|
173
|
+
- app/views/eventual/admin/event_taxons/index.html.erb
|
|
174
|
+
- app/views/eventual/admin/event_taxons/index.json.jbuilder
|
|
175
|
+
- app/views/eventual/admin/events/_edit_form.html.erb
|
|
176
|
+
- app/views/eventual/admin/events/_event.json.jbuilder
|
|
177
|
+
- app/views/eventual/admin/events/_filter_form.html.erb
|
|
178
|
+
- app/views/eventual/admin/events/_filter_table.html.erb
|
|
179
|
+
- app/views/eventual/admin/events/_form.html.erb
|
|
180
|
+
- app/views/eventual/admin/events/_index_tbody.html.erb
|
|
181
|
+
- app/views/eventual/admin/events/_index_thead.html.erb
|
|
182
|
+
- app/views/eventual/admin/events/_new_form.html.erb
|
|
183
|
+
- app/views/eventual/admin/events/_show.json.jbuilder
|
|
184
|
+
- app/views/eventual/admin/events/_show/_breadcrumb.html.erb
|
|
185
|
+
- app/views/eventual/admin/events/create.json.jbuilder
|
|
186
|
+
- app/views/eventual/admin/events/index.html.erb
|
|
187
|
+
- app/views/eventual/admin/events/index.json.jbuilder
|
|
188
|
+
- app/views/eventual/admin/events/repeat_form.js.erb
|
|
189
|
+
- app/views/eventual/admin/events/show.html.erb
|
|
190
|
+
- app/views/eventual/admin/place_taxons/_breadcrumb.html.erb
|
|
191
|
+
- app/views/eventual/admin/place_taxons/_edit_form.html.erb
|
|
192
|
+
- app/views/eventual/admin/place_taxons/_filter_form.html.erb
|
|
193
|
+
- app/views/eventual/admin/place_taxons/_form.html.erb
|
|
194
|
+
- app/views/eventual/admin/place_taxons/_index_tbody.html.erb
|
|
195
|
+
- app/views/eventual/admin/place_taxons/_index_thead.html.erb
|
|
196
|
+
- app/views/eventual/admin/place_taxons/_new_form.html.erb
|
|
197
|
+
- app/views/eventual/admin/place_taxons/_show_table.html.erb
|
|
198
|
+
- app/views/eventual/admin/place_taxons/index.html.erb
|
|
199
|
+
- app/views/eventual/admin/places/_breadcrumb.html.erb
|
|
200
|
+
- app/views/eventual/admin/places/_edit_form.html.erb
|
|
201
|
+
- app/views/eventual/admin/places/_filter_form.html.erb
|
|
202
|
+
- app/views/eventual/admin/places/_form.html.erb
|
|
203
|
+
- app/views/eventual/admin/places/_index_tbody.html.erb
|
|
204
|
+
- app/views/eventual/admin/places/_index_thead.html.erb
|
|
205
|
+
- app/views/eventual/admin/places/_index_tr.html.erb
|
|
206
|
+
- app/views/eventual/admin/places/_new_form.html.erb
|
|
207
|
+
- app/views/eventual/admin/places/_place.json.jbuilder
|
|
208
|
+
- app/views/eventual/admin/places/_show.json.jbuilder
|
|
209
|
+
- app/views/eventual/admin/places/_show_table.html.erb
|
|
210
|
+
- app/views/eventual/admin/places/index.html.erb
|
|
211
|
+
- app/views/eventual/admin/places/index.json.jbuilder
|
|
212
|
+
- app/views/eventual/admin/plan_attenders/_breadcrumb.html.erb
|
|
213
|
+
- app/views/eventual/admin/plan_attenders/_course_student.json.jbuilder
|
|
214
|
+
- app/views/eventual/admin/plan_attenders/_edit_form.html.erb
|
|
215
|
+
- app/views/eventual/admin/plan_attenders/_filter.html.erb
|
|
216
|
+
- app/views/eventual/admin/plan_attenders/_form.html.erb
|
|
217
|
+
- app/views/eventual/admin/plan_attenders/_new_form.html.erb
|
|
218
|
+
- app/views/eventual/admin/plan_attenders/_plan_attender.json.jbuilder
|
|
219
|
+
- app/views/eventual/admin/plan_attenders/_show.json.jbuilder
|
|
220
|
+
- app/views/eventual/admin/plan_attenders/_show_table.html.erb
|
|
221
|
+
- app/views/eventual/admin/plan_attenders/absent.json.jbuilder
|
|
222
|
+
- app/views/eventual/admin/plan_attenders/attend.json.jbuilder
|
|
223
|
+
- app/views/eventual/admin/plan_attenders/index.html.erb
|
|
224
|
+
- app/views/eventual/admin/plan_attenders/index.json.jbuilder
|
|
225
|
+
- app/views/eventual/admin/plan_attenders/indexs.json.jbuilder
|
|
226
|
+
- app/views/eventual/admin/plan_items/_breadcrumb.html.erb
|
|
227
|
+
- app/views/eventual/admin/plan_items/_edit.html.erb
|
|
228
|
+
- app/views/eventual/admin/plan_items/_filter.html.erb
|
|
229
|
+
- app/views/eventual/admin/plan_items/_menu.html.erb
|
|
230
|
+
- app/views/eventual/admin/plan_items/_plan.html.erb
|
|
231
|
+
- app/views/eventual/admin/plan_items/_plan_item.json.jbuilder
|
|
232
|
+
- app/views/eventual/admin/plan_items/_plan_items.json.jbuilder
|
|
233
|
+
- app/views/eventual/admin/plan_items/_show.json.jbuilder
|
|
234
|
+
- app/views/eventual/admin/plan_items/_show_table.html.erb
|
|
235
|
+
- app/views/eventual/admin/plan_items/index.html.erb
|
|
236
|
+
- app/views/eventual/admin/plan_items/index.json.jbuilder
|
|
237
|
+
- app/views/eventual/admin/plan_items/qrcode.js.erb
|
|
238
|
+
- app/views/eventual/admin/plans/_edit_item.html.erb
|
|
239
|
+
- app/views/eventual/admin/plans/_filter.html.erb
|
|
240
|
+
- app/views/eventual/admin/plans/_index.html.erb
|
|
241
|
+
- app/views/eventual/admin/plans/_plan.json.jbuilder
|
|
242
|
+
- app/views/eventual/admin/plans/_select_table.html.erb
|
|
243
|
+
- app/views/eventual/admin/plans/_show.json.jbuilder
|
|
244
|
+
- app/views/eventual/admin/plans/_show_item.html.erb
|
|
245
|
+
- app/views/eventual/admin/plans/_show_table.html.erb
|
|
246
|
+
- app/views/eventual/admin/plans/_table.html.erb
|
|
247
|
+
- app/views/eventual/admin/plans/calendar.js.erb
|
|
248
|
+
- app/views/eventual/admin/plans/index.html.erb
|
|
249
|
+
- app/views/eventual/admin/plans/index.js.erb
|
|
250
|
+
- app/views/eventual/admin/plans/index.json.jbuilder
|
|
251
|
+
- app/views/eventual/admin/plans/show.html.erb
|
|
252
|
+
- app/views/eventual/admin/seats/_breadcrumb.html.erb
|
|
253
|
+
- app/views/eventual/admin/seats/_edit_form.html.erb
|
|
254
|
+
- app/views/eventual/admin/seats/_filter_form.html.erb
|
|
255
|
+
- app/views/eventual/admin/seats/_form.html.erb
|
|
256
|
+
- app/views/eventual/admin/seats/_index_tbody.html.erb
|
|
257
|
+
- app/views/eventual/admin/seats/_index_thead.html.erb
|
|
258
|
+
- app/views/eventual/admin/seats/_new_form.html.erb
|
|
259
|
+
- app/views/eventual/admin/seats/_show_table.html.erb
|
|
260
|
+
- app/views/eventual/admin/seats/index.html.erb
|
|
261
|
+
- app/views/eventual/admin/time_items/_edit_form.html.erb
|
|
262
|
+
- app/views/eventual/admin/time_items/_form.html.erb
|
|
263
|
+
- app/views/eventual/admin/time_items/_new_form.html.erb
|
|
264
|
+
- app/views/eventual/admin/time_items/_show.json.jbuilder
|
|
265
|
+
- app/views/eventual/admin/time_items/_show_table.html.erb
|
|
266
|
+
- app/views/eventual/admin/time_items/_time_item.json.jbuilder
|
|
267
|
+
- app/views/eventual/admin/time_items/_time_items_options.html.erb
|
|
268
|
+
- app/views/eventual/admin/time_items/default.json.jbuilder
|
|
269
|
+
- app/views/eventual/admin/time_items/index.json.jbuilder
|
|
270
|
+
- app/views/eventual/admin/time_items/select.js.erb
|
|
271
|
+
- app/views/eventual/admin/time_lists/_edit_form.html.erb
|
|
272
|
+
- app/views/eventual/admin/time_lists/_filter.html.erb
|
|
273
|
+
- app/views/eventual/admin/time_lists/_form.html.erb
|
|
274
|
+
- app/views/eventual/admin/time_lists/_index_tbody.html.erb
|
|
275
|
+
- app/views/eventual/admin/time_lists/_index_thead.html.erb
|
|
276
|
+
- app/views/eventual/admin/time_lists/_index_tr.html.erb
|
|
277
|
+
- app/views/eventual/admin/time_lists/_new_form.html.erb
|
|
278
|
+
- app/views/eventual/admin/time_lists/_show.json.jbuilder
|
|
279
|
+
- app/views/eventual/admin/time_lists/_show_table.html.erb
|
|
280
|
+
- app/views/eventual/admin/time_lists/_time_items.html.erb
|
|
281
|
+
- app/views/eventual/admin/time_lists/_time_list.json.jbuilder
|
|
282
|
+
- app/views/eventual/admin/time_lists/index.html.erb
|
|
283
|
+
- app/views/eventual/admin/time_lists/index.json.jbuilder
|
|
284
|
+
- app/views/eventual/me/plan_items/_plan_item.json.jbuilder
|
|
285
|
+
- app/views/eventual/me/plan_items/index.json.jbuilder
|
|
286
|
+
- app/views/eventual/my/plans/_show_table.html.erb
|
|
287
|
+
- app/views/eventual/my/plans/_table.html.erb
|
|
288
|
+
- app/views/eventual/my/plans/_time_plan.json.jbuilder
|
|
289
|
+
- app/views/eventual/my/plans/calendar.js.erb
|
|
290
|
+
- app/views/eventual/my/plans/edit.html.erb
|
|
291
|
+
- app/views/eventual/my/plans/edit.js.erb
|
|
292
|
+
- app/views/eventual/my/plans/index-ready.js
|
|
293
|
+
- app/views/eventual/my/plans/index.html.erb
|
|
294
|
+
- app/views/eventual/my/plans/index.js
|
|
295
|
+
- app/views/eventual/my/plans/index.json.jbuilder
|
|
296
|
+
- app/views/eventual/my/plans/new.html.erb
|
|
297
|
+
- app/views/eventual/my/plans/show.html.erb
|
|
298
|
+
- app/views/eventual/my/plans/show.js.erb
|
|
299
|
+
- app/views/eventual/my/plans/show.json.jbuilder
|
|
300
|
+
- app/views/eventual/places/_filter_table.html.erb
|
|
301
|
+
- app/views/eventual/places/index.html.erb
|
|
302
|
+
- app/views/eventual/places/show.html.erb
|
|
303
|
+
- app/views/eventual/time/_finish_at.html.erb
|
|
304
|
+
- app/views/eventual/time/_finish_at_once.html.erb
|
|
305
|
+
- app/views/eventual/time/_form.html.erb
|
|
306
|
+
- app/views/eventual/time/_monthly_checkboxes.html.erb
|
|
307
|
+
- app/views/eventual/time/_once_date.html.erb
|
|
308
|
+
- app/views/eventual/time/_start_at.html.erb
|
|
309
|
+
- app/views/eventual/time/_start_at_once.html.erb
|
|
310
|
+
- app/views/eventual/time/_weekly_checkboxes.html.erb
|
|
311
|
+
- app/views/eventual/time/index.css
|
|
312
|
+
- app/views/eventual/time/repeat_form.js.erb
|
|
313
|
+
- app/views/eventual/time/show.css
|
|
314
|
+
- config/locales/en.enum.yml
|
|
315
|
+
- config/locales/zh.attributes.yml
|
|
316
|
+
- config/locales/zh.controller.yml
|
|
317
|
+
- config/locales/zh.enum.yml
|
|
318
|
+
- config/routes.rb
|
|
319
|
+
- lib/rails_event.rb
|
|
320
|
+
- lib/rails_event/config.rb
|
|
321
|
+
- lib/rails_event/engine.rb
|
|
322
|
+
- lib/rails_event/version.rb
|
|
323
|
+
homepage: https://github.com/work-design/rails_event
|
|
324
|
+
licenses:
|
|
325
|
+
- MIT
|
|
326
|
+
metadata: {}
|
|
327
|
+
post_install_message:
|
|
328
|
+
rdoc_options: []
|
|
329
|
+
require_paths:
|
|
330
|
+
- lib
|
|
331
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
332
|
+
requirements:
|
|
333
|
+
- - ">="
|
|
334
|
+
- !ruby/object:Gem::Version
|
|
335
|
+
version: '0'
|
|
336
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
337
|
+
requirements:
|
|
338
|
+
- - ">="
|
|
339
|
+
- !ruby/object:Gem::Version
|
|
340
|
+
version: '0'
|
|
341
|
+
requirements: []
|
|
342
|
+
rubygems_version: 3.2.22
|
|
343
|
+
signing_key:
|
|
344
|
+
specification_version: 4
|
|
345
|
+
summary: 时间、地点、参与者管理系统
|
|
346
|
+
test_files: []
|