Selaa lähdekoodia

require stuff

Kylie Jo Swistak 5 vuotta sitten
vanhempi
commit
0a9763c9c0

+ 2 - 0
app/app_forms/char_reject.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class CharacerRejection < ApplicationForm
   def self.process
     @process ||= Application.new('Character Rejection') do |event|

+ 2 - 0
app/app_forms/character_app.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class CharacterApplication < ApplicationForm
   def self.process
     @process ||= Application.new('Character Application') do |event|

+ 2 - 0
app/app_forms/confirm_archive.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class ConfirmArchive < ApplicationForm
   def self.process
     @process ||= Application.new('Team Alert') do |event|

+ 2 - 0
app/app_forms/dm_app.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class NewApplication < ApplicationForm
   def self.process
     @process ||= Application.new('New App') do |event|

+ 2 - 0
app/app_forms/image_rejection.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class ImageRejection < ApplicationForm
   def self.process
     @process ||= Application.new('Image Rejection') do |event|

+ 2 - 0
app/app_forms/item_app.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class ItemApplication < ApplicationForm
   def self.process
     @process ||= Application.new('Item Application') do |event|

+ 2 - 0
app/app_forms/item_reject.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class ItemRejection < ApplicationForm
   def self.process
     @process ||= Application.new('Item Rejection') do |event|

+ 2 - 0
app/app_forms/landmark_app.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class LandmarkApplication < ApplicationForm
   def self.process
     @process ||= Application.new('Landmark Application') do |event|

+ 2 - 0
app/app_forms/landmark_reject.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class LandmarkRejection < ApplicationForm
   def self.process
     @process ||= Application.new('Landmark Rejection') do |event|

+ 2 - 0
app/app_forms/reactivate_app.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class ReactivationApplication < ApplicationForm
   def self.process
     @process ||= Application.new('Reactivation Application') do |event|

+ 2 - 0
app/app_forms/team_app.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class TeamApplication < ApplicationForm
   def self.process
     @process ||= Application.new('Team Application') do |event|

+ 2 - 0
app/app_forms/team_join_app.rb

@@ -1,3 +1,5 @@
+require './app/app_forms/app_form.rb'
+
 class TeamJoinApplication < ApplicationForm
   def self.process
     @process ||= Application.new('Team Join Request') do |event|

+ 2 - 0
app/commands/afflict.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class AfflictCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/app.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class ApplicationCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/cure.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class CureCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/hello.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class HelloCommand < BaseCommand
   def self.cmd
     @cmd ||= Command.new(:hello, "Says hello!") do |event|

+ 2 - 0
app/commands/inv.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class InventoryCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/item.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class ItemCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/landmark.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class LandmarkCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/matchup.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class MatchupCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/member.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class MemberCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/poll.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class PollCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/raffle.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class RaffleCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/roll.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class RollCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/stats.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class StatsCommand < BaseCommand
   def self.opts
     {

+ 2 - 0
app/commands/team.rb

@@ -1,3 +1,5 @@
+require './app/commands/base_command.rb'
+
 class TeamCommand < BaseCommand
   def self.opts
     {