trusty-festivity-extension 2.5.4 → 2.5.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +17 -2
  3. data/Gemfile.lock +508 -16
  4. data/README.md +2 -0
  5. data/Rakefile +9 -109
  6. data/app/assets/images/skins/crawl/crawl-after-dark-bg.png +0 -0
  7. data/app/assets/images/skins/crawl/crawl-intro-bg.png +0 -0
  8. data/app/assets/images/skins/crawl/crawl-map.png +0 -0
  9. data/app/assets/images/skins/crawl/crawl-up-next-bg.png +0 -0
  10. data/app/assets/images/skins/traf/traf-background.png +0 -0
  11. data/config/database.yml +7 -0
  12. data/coverage/assets/0.10.0/application.css +799 -0
  13. data/coverage/assets/0.10.0/application.js +1707 -0
  14. data/coverage/assets/0.10.0/colorbox/border.png +0 -0
  15. data/coverage/assets/0.10.0/colorbox/controls.png +0 -0
  16. data/coverage/assets/0.10.0/colorbox/loading.gif +0 -0
  17. data/coverage/assets/0.10.0/colorbox/loading_background.png +0 -0
  18. data/coverage/assets/0.10.0/favicon_green.png +0 -0
  19. data/coverage/assets/0.10.0/favicon_red.png +0 -0
  20. data/coverage/assets/0.10.0/favicon_yellow.png +0 -0
  21. data/coverage/assets/0.10.0/loading.gif +0 -0
  22. data/coverage/assets/0.10.0/magnify.png +0 -0
  23. data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  24. data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  25. data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  26. data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  27. data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  28. data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  29. data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  30. data/coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  31. data/coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
  32. data/coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  33. data/coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
  34. data/coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
  35. data/coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  36. data/coverage/index.html +11913 -0
  37. data/lib/festivity/engine.rb +1 -0
  38. data/lib/trusty-festivity-extension.rb +1 -1
  39. data/spec/ci/database.mysql.yml +21 -0
  40. data/spec/dummy/README.rdoc +28 -0
  41. data/spec/dummy/Rakefile +5 -0
  42. data/spec/dummy/bin/bundle +3 -0
  43. data/spec/dummy/bin/rails +4 -0
  44. data/spec/dummy/bin/rake +4 -0
  45. data/spec/dummy/bin/setup +29 -0
  46. data/spec/dummy/config/application.rb +100 -0
  47. data/spec/dummy/config/boot.rb +6 -0
  48. data/spec/dummy/config/database.yml +13 -0
  49. data/spec/dummy/config/environment.rb +5 -0
  50. data/spec/dummy/config/environments/development.rb +49 -0
  51. data/spec/dummy/config/environments/production.rb +79 -0
  52. data/spec/dummy/config/environments/test.rb +42 -0
  53. data/spec/dummy/config/initializers/assets.rb +11 -0
  54. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  55. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  56. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  57. data/spec/dummy/config/initializers/inflections.rb +16 -0
  58. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  59. data/spec/dummy/config/initializers/session_store.rb +3 -0
  60. data/spec/dummy/config/initializers/trusty_cms_config.rb +20 -0
  61. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  62. data/spec/dummy/config/locales/en.yml +23 -0
  63. data/spec/dummy/config/routes.rb +0 -0
  64. data/spec/dummy/config/secrets.yml +22 -0
  65. data/spec/dummy/config.ru +4 -0
  66. data/spec/dummy/db/schema.rb +262 -0
  67. data/spec/dummy/log/test.log +2151 -0
  68. data/spec/dummy/public/404.html +67 -0
  69. data/spec/dummy/public/422.html +67 -0
  70. data/spec/dummy/public/500.html +66 -0
  71. data/spec/dummy/public/favicon.ico +0 -0
  72. data/spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig +2 -0
  73. data/spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime +0 -0
  74. data/spec/dummy/tmp/radiant_config_cache.txt +0 -0
  75. data/spec/factories/festivity_event_page.rb +9 -0
  76. data/spec/factories/site.rb +9 -0
  77. data/spec/models/festivity_event_page_spec.rb +21 -0
  78. data/spec/rails_helper.rb +51 -0
  79. data/spec/spec_helper.rb +22 -0
  80. data/trusty-festivity-extension.gemspec +3 -3
  81. metadata +118 -10
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,2 @@
1
+ o: ActiveSupport::Cache::Entry: @value{I"admin.title:ETI"TrustyCms CMS;TI"defaults.page.parts;TI"Body,Extended;TI"defaults.page.status;TI"
2
+ Draft;TI"pagination.param_name;TI" page;TI"#pagination.per_page_param_name;TI"
File without changes
@@ -0,0 +1,9 @@
1
+ FactoryGirl.define do
2
+ factory :festivity_event_page do
3
+ title Faker::Hacker.adjective
4
+ breadcrumb { title }
5
+ slug { title.slugify }
6
+ class_name 'FestivityEventPage'
7
+ status_id 100
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ FactoryGirl.define do
2
+ factory :site do
3
+ name Faker::Hacker.noun
4
+ domain Faker::Internet.domain_name
5
+ homepage_id 3
6
+ base_domain { domain }
7
+ position 3
8
+ end
9
+ end
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe FestivityEventPage, :type => :model do
4
+ before do
5
+ Site.destroy_all
6
+ FestivityEventPage.destroy_all
7
+ end
8
+
9
+ before do
10
+ @site = FactoryGirl.create(:site)
11
+ @festivity_event = FactoryGirl.create(:festivity_event_page, site_id: @site.id)
12
+ end
13
+
14
+ it "has a valid factory" do
15
+ FactoryGirl.create(:festivity_event_page, title: "Degrees of Separation", site_id: @site.id).should be_valid
16
+ end
17
+
18
+ it "has the right relationship between the event page and site" do
19
+ expect(@festivity_event.site).to eq(@site)
20
+ end
21
+ end
@@ -0,0 +1,51 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV["RAILS_ENV"] ||= 'test'
3
+ require 'spec_helper'
4
+ require 'rspec/rails'
5
+ require 'capybara/rails'
6
+ require 'capybara/poltergeist'
7
+ require 'database_cleaner'
8
+
9
+ require 'database_cleaner'
10
+ DatabaseCleaner.strategy = :truncation, {except: %w[config]}
11
+
12
+ config.include FactoryGirl::Syntax::Methods
13
+
14
+ Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
15
+
16
+ RSpec.configure do |config|
17
+ config.fixture_path = "#{::TRUSTY_CMS_ROOT}/spec/fixtures"
18
+
19
+ config.expect_with :rspec do |c|
20
+ c.syntax = [:should, :expect]
21
+ end
22
+
23
+ config.use_transactional_fixtures = false
24
+
25
+ config.infer_spec_type_from_file_location!
26
+
27
+ config.before(:suite) do
28
+ TrustyCms::Config.initialize_cache
29
+
30
+ configs = [
31
+ ['admin.title', 'TrustyCMS'],
32
+ ['admin.subtitle', 'Publishing for Small Teams'],
33
+ ['defaults.page.parts', 'body, extended'],
34
+ ['defaults.page.status', 'Draft'],
35
+ ['defaults.page.filter', nil],
36
+ ['defaults.page.fields', 'Keywords, Description'],
37
+ ['defaults.snippet.filter', nil],
38
+ ['session_timeout', '1209600'], # 2.weeks.to_s ????
39
+ ['default_locale', 'en'],
40
+ ]
41
+ configs.each do |key, value|
42
+ c = TrustyCms::Config.find_or_initialize_by(key: key)
43
+ c.value = value
44
+ c.save
45
+ end
46
+ end
47
+
48
+ config.after(:each) do
49
+ DatabaseCleaner.clean
50
+ end
51
+ end
@@ -0,0 +1,22 @@
1
+ require 'simplecov'
2
+ SimpleCov.start 'rails'
3
+ ENV['RAILS_ENV'] ||= 'test'
4
+
5
+ require File.expand_path("../dummy/config/environment", __FILE__)
6
+ require 'rspec/rails'
7
+ require 'rspec/autorun'
8
+ require 'factory_girl_rails'
9
+
10
+ FactoryGirl.definition_file_paths = [File.expand_path('../factories', __FILE__)]
11
+ FactoryGirl.find_definitions
12
+
13
+ Rails.backtrace_cleaner.remove_silencers!
14
+
15
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
16
+
17
+ RSpec.configure do |config|
18
+ config.mock_with :rspec
19
+ config.use_transactional_fixtures = true
20
+ config.infer_base_class_for_anonymous_controllers = false
21
+ config.order = "random"
22
+ end
@@ -22,12 +22,12 @@ Gem::Specification.new do |s|
22
22
  # s.executables = Dir['bin/*'] - ignores
23
23
  s.require_paths = ["lib"]
24
24
 
25
- s.add_dependency "trusty-cms" , '>= 2.0.20'
26
- s.add_dependency "trusty-clipped-extension" , "~> 2.0.12"
25
+ s.add_dependency "trusty-cms" , '>= 2.0.21'
26
+ s.add_dependency "trusty-clipped-extension" , "~> 2.0.13"
27
27
  s.add_dependency "trusty-snippets-extension" , "~> 2.0.7"
28
28
  s.add_dependency "trusty-reorder-extension" , "~> 2.0.6"
29
29
  s.add_dependency "trusty-layouts-extension" , "~> 2.0.4"
30
- s.add_dependency "trusty-rad-social-extension" , "~> 2.2.1"
30
+ s.add_dependency "trusty-rad-social-extension" , "~> 2.2.3"
31
31
  s.add_dependency "trusty-multi-site-extension" , "~> 2.0.11"
32
32
  s.add_dependency 'actionpack-action_caching' , '~> 1.1.1'
33
33
  s.add_dependency 'dalli-elasticache' ,'~> 0.1.2'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-festivity-extension
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.4
4
+ version: 2.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Sipple, Danielle Greaves, Brittany Martin, Patrick FitzGerald
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-11 00:00:00.000000000 Z
11
+ date: 2016-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: trusty-cms
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.20
19
+ version: 2.0.21
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.20
26
+ version: 2.0.21
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: trusty-clipped-extension
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 2.0.12
33
+ version: 2.0.13
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 2.0.12
40
+ version: 2.0.13
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: trusty-snippets-extension
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 2.2.1
89
+ version: 2.2.3
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 2.2.1
96
+ version: 2.2.3
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: trusty-multi-site-extension
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -636,11 +636,37 @@ files:
636
636
  - app/views/social/_share_modal.html.haml
637
637
  - app/views/social/_twitter_posts.html.haml
638
638
  - bower.json
639
+ - config/database.yml
639
640
  - config/initializers/pluralizations.rb
640
641
  - config/initializers/radiant_config.rb
641
642
  - config/locales/en.yml
642
643
  - config/routes.rb
643
644
  - config/trustygems.yml
645
+ - coverage/assets/0.10.0/application.css
646
+ - coverage/assets/0.10.0/application.js
647
+ - coverage/assets/0.10.0/colorbox/border.png
648
+ - coverage/assets/0.10.0/colorbox/controls.png
649
+ - coverage/assets/0.10.0/colorbox/loading.gif
650
+ - coverage/assets/0.10.0/colorbox/loading_background.png
651
+ - coverage/assets/0.10.0/favicon_green.png
652
+ - coverage/assets/0.10.0/favicon_red.png
653
+ - coverage/assets/0.10.0/favicon_yellow.png
654
+ - coverage/assets/0.10.0/loading.gif
655
+ - coverage/assets/0.10.0/magnify.png
656
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
657
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
658
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
659
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
660
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png
661
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
662
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
663
+ - coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
664
+ - coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png
665
+ - coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png
666
+ - coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png
667
+ - coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png
668
+ - coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png
669
+ - coverage/index.html
644
670
  - db/content/layouts/Crawl/base.html
645
671
  - db/content/layouts/Crawl/cms_home.html
646
672
  - db/content/layouts/Crawl/normal.html
@@ -4326,6 +4352,47 @@ files:
4326
4352
  - node_modules/bower/templates/std/lookup.std
4327
4353
  - node_modules/bower/templates/std/register.std
4328
4354
  - node_modules/bower/templates/std/search-results.std
4355
+ - spec/ci/database.mysql.yml
4356
+ - spec/dummy/README.rdoc
4357
+ - spec/dummy/Rakefile
4358
+ - spec/dummy/bin/bundle
4359
+ - spec/dummy/bin/rails
4360
+ - spec/dummy/bin/rake
4361
+ - spec/dummy/bin/setup
4362
+ - spec/dummy/config.ru
4363
+ - spec/dummy/config/application.rb
4364
+ - spec/dummy/config/boot.rb
4365
+ - spec/dummy/config/database.yml
4366
+ - spec/dummy/config/environment.rb
4367
+ - spec/dummy/config/environments/development.rb
4368
+ - spec/dummy/config/environments/production.rb
4369
+ - spec/dummy/config/environments/test.rb
4370
+ - spec/dummy/config/initializers/assets.rb
4371
+ - spec/dummy/config/initializers/backtrace_silencers.rb
4372
+ - spec/dummy/config/initializers/cookies_serializer.rb
4373
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
4374
+ - spec/dummy/config/initializers/inflections.rb
4375
+ - spec/dummy/config/initializers/mime_types.rb
4376
+ - spec/dummy/config/initializers/session_store.rb
4377
+ - spec/dummy/config/initializers/trusty_cms_config.rb
4378
+ - spec/dummy/config/initializers/wrap_parameters.rb
4379
+ - spec/dummy/config/locales/en.yml
4380
+ - spec/dummy/config/routes.rb
4381
+ - spec/dummy/config/secrets.yml
4382
+ - spec/dummy/db/schema.rb
4383
+ - spec/dummy/log/test.log
4384
+ - spec/dummy/public/404.html
4385
+ - spec/dummy/public/422.html
4386
+ - spec/dummy/public/500.html
4387
+ - spec/dummy/public/favicon.ico
4388
+ - spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig
4389
+ - spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime
4390
+ - spec/dummy/tmp/radiant_config_cache.txt
4391
+ - spec/factories/festivity_event_page.rb
4392
+ - spec/factories/site.rb
4393
+ - spec/models/festivity_event_page_spec.rb
4394
+ - spec/rails_helper.rb
4395
+ - spec/spec_helper.rb
4329
4396
  - trusty-festivity-extension.gemspec
4330
4397
  - vendor/assets/components/Readmore.js/CHANGELOG.md
4331
4398
  - vendor/assets/components/Readmore.js/README.md
@@ -4789,8 +4856,49 @@ required_rubygems_version: !ruby/object:Gem::Requirement
4789
4856
  version: '0'
4790
4857
  requirements: []
4791
4858
  rubyforge_project:
4792
- rubygems_version: 2.4.6
4859
+ rubygems_version: 2.4.8
4793
4860
  signing_key:
4794
4861
  specification_version: 4
4795
4862
  summary: Festival microsite engine for Trusty CMS
4796
- test_files: []
4863
+ test_files:
4864
+ - spec/ci/database.mysql.yml
4865
+ - spec/dummy/bin/bundle
4866
+ - spec/dummy/bin/rails
4867
+ - spec/dummy/bin/rake
4868
+ - spec/dummy/bin/setup
4869
+ - spec/dummy/config/application.rb
4870
+ - spec/dummy/config/boot.rb
4871
+ - spec/dummy/config/database.yml
4872
+ - spec/dummy/config/environment.rb
4873
+ - spec/dummy/config/environments/development.rb
4874
+ - spec/dummy/config/environments/production.rb
4875
+ - spec/dummy/config/environments/test.rb
4876
+ - spec/dummy/config/initializers/assets.rb
4877
+ - spec/dummy/config/initializers/backtrace_silencers.rb
4878
+ - spec/dummy/config/initializers/cookies_serializer.rb
4879
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
4880
+ - spec/dummy/config/initializers/inflections.rb
4881
+ - spec/dummy/config/initializers/mime_types.rb
4882
+ - spec/dummy/config/initializers/session_store.rb
4883
+ - spec/dummy/config/initializers/trusty_cms_config.rb
4884
+ - spec/dummy/config/initializers/wrap_parameters.rb
4885
+ - spec/dummy/config/locales/en.yml
4886
+ - spec/dummy/config/routes.rb
4887
+ - spec/dummy/config/secrets.yml
4888
+ - spec/dummy/config.ru
4889
+ - spec/dummy/db/schema.rb
4890
+ - spec/dummy/log/test.log
4891
+ - spec/dummy/public/404.html
4892
+ - spec/dummy/public/422.html
4893
+ - spec/dummy/public/500.html
4894
+ - spec/dummy/public/favicon.ico
4895
+ - spec/dummy/Rakefile
4896
+ - spec/dummy/README.rdoc
4897
+ - spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig
4898
+ - spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime
4899
+ - spec/dummy/tmp/radiant_config_cache.txt
4900
+ - spec/factories/festivity_event_page.rb
4901
+ - spec/factories/site.rb
4902
+ - spec/models/festivity_event_page_spec.rb
4903
+ - spec/rails_helper.rb
4904
+ - spec/spec_helper.rb