tb_events 1.3.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8495699ef036385ff906c76c7d34b616b024c3c167f4e543d929d8cc15c95bf
4
- data.tar.gz: c384b0864d671436b70da6aedd9877657f95d588227958fcb73569771ac3fa21
3
+ metadata.gz: e19d7ca4e2a12520dec1b46836f3fb0a9fceaf973b028ee85a341ece8635a323
4
+ data.tar.gz: 1090bda847f92900155a812cc7c08221e764a2c74a315c85580fb49039f9a1fc
5
5
  SHA512:
6
- metadata.gz: 9473623e16c4e10a2184574bf4c5fc9b5e6bc5bf2c18f725dce12dc6696b97a85761b223446ad2b341be0095cc1f04fb99e005da86bddb1a7b1781fb2cb23a7b
7
- data.tar.gz: 441459722f410fc0aff5508b49345c359953ad722a3dabdc75f34799b8afaa7cecc6064dacc6335284dda39c4f4d5312084e4c8c7e5718a25b64ff75f02e6888
6
+ metadata.gz: a8d6a3e1ae6c08e9cd03cbe2bff49431147a815b435d9e1156d2fdc5ba19f6e1f9bbc36aa619a2c3c879b08f54179acbeb367cd41897646204de217d28a9114b
7
+ data.tar.gz: 667fd01ecad3c3e55f5dcc75a05430158ea517fa5304a168dab3f7a6a66104fdb6ea851215d7338870ffb3a8a73c1dc983f967ca362fc014f45c3a072d49e457
@@ -1,4 +1,4 @@
1
- class CreateSpudCalendars < ActiveRecord::Migration
1
+ class CreateSpudCalendars < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :spud_calendars do |t|
4
4
  t.string :title
@@ -1,4 +1,4 @@
1
- class CreateSpudCalendarEvents < ActiveRecord::Migration
1
+ class CreateSpudCalendarEvents < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :spud_calendar_events do |t|
4
4
  t.references :spud_calendar
@@ -1,4 +1,4 @@
1
- class AddLocationToSpudCalendarEvent < ActiveRecord::Migration
1
+ class AddLocationToSpudCalendarEvent < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  add_column :spud_calendar_events, :location, :string
4
4
  add_column :spud_calendar_events, :address, :string
@@ -1,4 +1,4 @@
1
- class AddIdentifierToSpudCalendars < ActiveRecord::Migration
1
+ class AddIdentifierToSpudCalendars < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  add_column :spud_calendars, :identifier, :string
4
4
  add_index :spud_calendars, :identifier
@@ -1,4 +1,4 @@
1
- class RemoveColorFromSpudCalendars < ActiveRecord::Migration
1
+ class RemoveColorFromSpudCalendars < ActiveRecord::Migration[4.2]
2
2
  def up
3
3
  remove_column :spud_calendars, :color
4
4
  end
@@ -2,6 +2,8 @@ require 'tb_core'
2
2
 
3
3
  module SpudEvents
4
4
  class Engine < Rails::Engine
5
+ require "#{root}/lib/spud_events/calendar_builder"
6
+
5
7
  engine_name :tb_events
6
8
  config.autoload_paths << "#{root}/lib"
7
9
 
@@ -1,3 +1,3 @@
1
1
  module SpudEvents
2
- VERSION = '1.3.0'
2
+ VERSION = '1.3.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tb_events
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moser Consulting
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-11 00:00:00.000000000 Z
11
+ date: 2021-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails