typical_situation 1.0.1 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fdb5e52424eb45d6f3b9bf32e1977a9b4c1375b5b89487a9a700c8450be40a6
4
- data.tar.gz: a92d7ed71e6d90bf6555b1326daef2a69082739230c7476cf6db596cfb565e8d
3
+ metadata.gz: 59384fee031d1440a474689f99be97760aedc645343e4febf4d1356ed05ee801
4
+ data.tar.gz: '08b482a57e976dbe1ac86604648a4f237346c09db88c672483dfae604d566cf1'
5
5
  SHA512:
6
- metadata.gz: 1b2f4d58609addf3c35eb05a98f1df8b5507728c7aca7d03c342466256064e9490d420f5c373479affdfa46aef1d8b5555d0c8269a5742489d17d536d546e391
7
- data.tar.gz: bc4fab13796303a61ac7ceee09ecdc42a61aa46ccfe03b3a636df64aadd6fa85e7dd48e451c0e55812932657a3b590a9dff56c57d69122097b166ecb62c3d7e8
6
+ metadata.gz: dbcec21abd36a2da29b901bb2ffcb0468b6cf4170b4e974bef1cd640d174813c557fa8a87bddcda23e92c5709ea5c89c4fa39de7968f62ea08d5db6ac99a01a3
7
+ data.tar.gz: d12f5d0e3d6408a7060d46704e8dbe47cc516119fd7ae360e863bd3d00592def5e0ce99ac2bd2e6b491575284022469299689fef943368831003da8235c0a5a3
@@ -0,0 +1,6 @@
1
+ require 'rails/engine'
2
+
3
+ module TypicalSituation
4
+ class Engine < Rails::Engine
5
+ end
6
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TypicalSituation
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
@@ -1,11 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "typical_situation/identity"
4
- require "typical_situation/permissions"
5
- require "typical_situation/flash_messages"
6
- require "typical_situation/actions"
7
- require "typical_situation/operations"
8
- require "typical_situation/responses"
3
+ require 'typical_situation/engine'
4
+ require 'typical_situation/identity'
5
+ require 'typical_situation/permissions'
6
+ require 'typical_situation/flash_messages'
7
+ require 'typical_situation/actions'
8
+ require 'typical_situation/operations'
9
+ require 'typical_situation/responses'
9
10
 
10
11
  module TypicalSituation
11
12
  class Error < StandardError; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typical_situation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mars Hall
@@ -193,6 +193,7 @@ files:
193
193
  - config/locales/typical_situation.en.yml
194
194
  - lib/typical_situation.rb
195
195
  - lib/typical_situation/actions.rb
196
+ - lib/typical_situation/engine.rb
196
197
  - lib/typical_situation/flash_messages.rb
197
198
  - lib/typical_situation/identity.rb
198
199
  - lib/typical_situation/operations.rb