trusty-cms 2.0.2.pre.beta → 2.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.
Files changed (109) hide show
  1. checksums.yaml +5 -13
  2. data/.gitignore +2 -0
  3. data/CONTRIBUTORS.md +3 -1
  4. data/Gemfile +6 -1
  5. data/Gemfile.lock +100 -80
  6. data/INSTALL.md +7 -6
  7. data/README.md +3 -1
  8. data/Rakefile +24 -4
  9. data/app/assets/javascripts/admin/jquery-ui.js +3787 -2339
  10. data/app/assets/javascripts/admin/page-edit.js +3 -3
  11. data/app/assets/javascripts/admin/tabcontrol.js.erb +16 -16
  12. data/app/assets/javascripts/admin/treetable.js +4 -2
  13. data/app/assets/stylesheets/admin/_base.scss +4 -4
  14. data/app/assets/stylesheets/admin/modules/_links.scss +1 -1
  15. data/app/assets/stylesheets/admin/partials/_content.scss +9 -2
  16. data/app/assets/stylesheets/admin/partials/_forms.scss +97 -29
  17. data/app/assets/stylesheets/admin/partials/_header.scss +2 -3
  18. data/app/assets/stylesheets/admin/partials/_index.scss +9 -6
  19. data/app/assets/stylesheets/admin/partials/_layout.scss +1 -2
  20. data/app/assets/stylesheets/admin/partials/_popup.scss +0 -11
  21. data/app/assets/stylesheets/admin/partials/_tabcontrol.scss +4 -4
  22. data/app/assets/stylesheets/admin/partials/_typography.scss +4 -0
  23. data/app/controllers/admin/pages_controller.rb +9 -1
  24. data/app/controllers/admin/references_controller.rb +8 -1
  25. data/app/controllers/admin/users_controller.rb +1 -1
  26. data/app/controllers/admin/welcome_controller.rb +3 -3
  27. data/app/controllers/site_controller.rb +1 -1
  28. data/app/helpers/admin/node_helper.rb +4 -4
  29. data/app/models/trusty_cms/config.rb +2 -1
  30. data/app/views/admin/configuration/edit.html.haml +2 -2
  31. data/app/views/admin/configuration/show.html.haml +1 -1
  32. data/app/views/admin/layouts/_form.html.haml +1 -1
  33. data/app/views/admin/layouts/remove.html.haml +1 -1
  34. data/app/views/admin/pages/_fields.html.haml +1 -1
  35. data/app/views/admin/pages/_node.html.haml +2 -2
  36. data/app/views/admin/pages/edit.html.haml +1 -1
  37. data/app/views/admin/pages/remove.html.haml +2 -2
  38. data/app/views/admin/preferences/edit.html.haml +36 -36
  39. data/app/views/admin/users/_form.html.haml +1 -1
  40. data/app/views/admin/users/_password_fields.html.haml +1 -1
  41. data/app/views/admin/users/remove.html.haml +1 -1
  42. data/app/views/admin/welcome/login.html.haml +1 -1
  43. data/app/views/layouts/application.html.haml +18 -16
  44. data/config/application.rb +2 -1
  45. data/config/boot.rb +0 -1
  46. data/config/database.mysql.yml +3 -3
  47. data/config/environments/development.rb +1 -0
  48. data/config/environments/test.rb +2 -4
  49. data/config/initializers/trusty_cms_config.rb +1 -0
  50. data/config/routes.rb +1 -0
  51. data/db/migrate/001_create_radiant_tables.rb +2 -1
  52. data/db/migrate/20100805155020_convert_page_metas.rb +0 -13
  53. data/db/migrate/20110902203823_add_allowed_children_cache_to_pages.rb +0 -4
  54. data/db/migrate/20120209231801_change_pages_allowed_children_cache_to_text.rb +0 -1
  55. data/lib/generators/instance/templates/databases/mysql.yml +3 -3
  56. data/lib/generators/instance/templates/instance_gemfile +2 -2
  57. data/lib/generators/trusty_cms/templates/database.yml.erb +4 -4
  58. data/lib/generators/trusty_cms/templates/routes.rb.erb +0 -1
  59. data/lib/login_system.rb +1 -1
  60. data/lib/tasks/database.rake +1 -3
  61. data/lib/tasks/framework.rake +1 -1
  62. data/lib/trusty_cms.rb +1 -1
  63. data/lib/trusty_cms/admin_ui.rb +2 -0
  64. data/lib/trusty_cms/extension_migrator.rb +1 -2
  65. data/lib/trusty_cms/initializer.rb +1 -1
  66. data/lib/trusty_cms/setup.rb +1 -1
  67. data/spec/ci/database.mysql.yml +1 -1
  68. data/spec/dummy/README.rdoc +28 -0
  69. data/spec/dummy/Rakefile +5 -0
  70. data/spec/dummy/bin/bundle +3 -0
  71. data/spec/dummy/bin/rails +4 -0
  72. data/spec/dummy/bin/rake +4 -0
  73. data/spec/dummy/bin/setup +29 -0
  74. data/spec/dummy/config.ru +4 -0
  75. data/spec/dummy/config/application.rb +152 -0
  76. data/spec/dummy/config/boot.rb +6 -0
  77. data/spec/dummy/config/database.yml +28 -0
  78. data/spec/dummy/config/environment.rb +5 -0
  79. data/spec/dummy/config/environments/development.rb +49 -0
  80. data/spec/dummy/config/environments/production.rb +79 -0
  81. data/spec/dummy/config/environments/test.rb +42 -0
  82. data/spec/dummy/config/initializers/assets.rb +11 -0
  83. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  84. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  85. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  86. data/spec/dummy/config/initializers/inflections.rb +16 -0
  87. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  88. data/spec/dummy/config/initializers/session_store.rb +3 -0
  89. data/spec/dummy/config/initializers/trusty_cms_config.rb +20 -0
  90. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  91. data/spec/dummy/config/locales/en.yml +23 -0
  92. data/spec/dummy/config/routes.rb +0 -0
  93. data/spec/dummy/config/secrets.yml +22 -0
  94. data/spec/dummy/db/schema.rb +122 -0
  95. data/spec/dummy/public/404.html +67 -0
  96. data/spec/dummy/public/422.html +67 -0
  97. data/spec/dummy/public/500.html +66 -0
  98. data/spec/dummy/public/favicon.ico +0 -0
  99. data/spec/features/pages_spec.rb +2 -2
  100. data/spec/rails_helper.rb +3 -4
  101. data/spec/spec_helper.rb +13 -77
  102. data/spec/support/custom_actions.rb +1 -0
  103. data/trusty_cms.gemspec +4 -2
  104. metadata +171 -182
  105. data/db/migrate/003_rename_behavior_column.rb +0 -9
  106. data/db/migrate/010_merge_behaviors_and_pages.rb +0 -57
  107. data/db/migrate/011_rename_type_column_on_page_to_class_name.rb +0 -9
  108. data/db/migrate/019_add_salt_to_users.rb +0 -11
  109. data/spec/helpers/regions_helper_spec.rb +0 -16
@@ -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
@@ -31,11 +31,11 @@ describe 'Pages' do
31
31
  Page.create!(title: 'Voyager Home', breadcrumb: 'Home', slug: '/')
32
32
  visit '/admin/pages'
33
33
  end
34
-
34
+
35
+
35
36
  it 'lets you edit the homepage' do
36
37
  click_link 'Voyager Home'
37
38
 
38
- expect(page).to have_content 'Edit Page'
39
39
  expect(page).to have_field 'Page Title', with: 'Voyager Home'
40
40
  expect(page).to have_button 'Save Changes'
41
41
  expect(page).to have_content 'Last Updated by Kathryn Janeway'
data/spec/rails_helper.rb CHANGED
@@ -1,9 +1,8 @@
1
1
  # This file is copied to spec/ when you run 'rails generate rspec:install'
2
2
  ENV["RAILS_ENV"] ||= 'test'
3
3
  require 'spec_helper'
4
- require File.expand_path("../../config/environment", __FILE__)
5
4
  require 'rspec/rails'
6
-
5
+ require 'capybara/rails'
7
6
  require 'capybara/poltergeist'
8
7
  Capybara.javascript_driver = :poltergeist
9
8
 
@@ -25,7 +24,7 @@ Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
25
24
 
26
25
  RSpec.configure do |config|
27
26
  # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
28
- config.fixture_path = "#{::Rails.root}/spec/fixtures"
27
+ config.fixture_path = "#{::TRUSTY_CMS_ROOT}/spec/fixtures"
29
28
 
30
29
  # If you're not using ActiveRecord, or you'd prefer not to run each of your
31
30
  # examples within a transaction, remove the following line or assign false
@@ -62,7 +61,7 @@ RSpec.configure do |config|
62
61
  ['default_locale', 'en'],
63
62
  ]
64
63
  configs.each do |key, value|
65
- c = TrustyCms::Config.find_or_initialize_by_key(key)
64
+ c = TrustyCms::Config.find_or_initialize_by(key: key)
66
65
  c.value = value
67
66
  c.save
68
67
  end
data/spec/spec_helper.rb CHANGED
@@ -1,78 +1,14 @@
1
- # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
- # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
- # The generated `.rspec` file contains `--require spec_helper` which will cause this
4
- # file to always be loaded, without a need to explicitly require it in any files.
5
- #
6
- # Given that it is always loaded, you are encouraged to keep this file as
7
- # light-weight as possible. Requiring heavyweight dependencies from this file
8
- # will add to the boot time of your test suite on EVERY test run, even for an
9
- # individual file that may not need all of that loaded. Instead, make a
10
- # separate helper file that requires this one and then use it only in the specs
11
- # that actually need it.
12
- #
13
- # The `.rspec` file also contains a few flags that are not defaults but that
14
- # users commonly want.
15
- #
16
- # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
1
+ ENV['RAILS_ENV'] ||= 'test'
2
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
3
+ require 'rspec/rails'
4
+ require 'rspec/autorun'
5
+ require 'factory_girl_rails'
6
+ Rails.backtrace_cleaner.remove_silencers!
7
+ # Load support files
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
17
9
  RSpec.configure do |config|
18
- # The settings below are suggested to provide a good initial experience
19
- # with RSpec, but feel free to customize to your heart's content.
20
- =begin
21
- # These two settings work together to allow you to limit a spec run
22
- # to individual examples or groups you care about by tagging them with
23
- # `:focus` metadata. When nothing is tagged with `:focus`, all examples
24
- # get run.
25
- config.filter_run :focus
26
- config.run_all_when_everything_filtered = true
27
-
28
- # Many RSpec users commonly either run the entire suite or an individual
29
- # file, and it's useful to allow more verbose output when running an
30
- # individual spec file.
31
- if config.files_to_run.one?
32
- # Use the documentation formatter for detailed output,
33
- # unless a formatter has already been configured
34
- # (e.g. via a command-line flag).
35
- config.default_formatter = 'doc'
36
- end
37
-
38
- # Print the 10 slowest examples and example groups at the
39
- # end of the spec run, to help surface which specs are running
40
- # particularly slow.
41
- config.profile_examples = 10
42
-
43
- # Run specs in random order to surface order dependencies. If you find an
44
- # order dependency and want to debug it, you can fix the order by providing
45
- # the seed, which is printed after each run.
46
- # --seed 1234
47
- config.order = :random
48
-
49
- # Seed global randomization in this process using the `--seed` CLI option.
50
- # Setting this allows you to use `--seed` to deterministically reproduce
51
- # test failures related to randomization by passing the same `--seed` value
52
- # as the one that triggered the failure.
53
- Kernel.srand config.seed
54
-
55
- # rspec-expectations config goes here. You can use an alternate
56
- # assertion/expectation library such as wrong or the stdlib/minitest
57
- # assertions if you prefer.
58
- config.expect_with :rspec do |expectations|
59
- # Enable only the newer, non-monkey-patching expect syntax.
60
- # For more details, see:
61
- # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
62
- expectations.syntax = :expect
63
- end
64
-
65
- # rspec-mocks config goes here. You can use an alternate test double
66
- # library (such as bogus or mocha) by changing the `mock_with` option here.
67
- config.mock_with :rspec do |mocks|
68
- # Enable only the newer, non-monkey-patching expect syntax.
69
- # For more details, see:
70
- # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
71
- mocks.syntax = :expect
72
-
73
- # Prevents you from mocking or stubbing a method that does not exist on
74
- # a real object. This is generally recommended.
75
- mocks.verify_partial_doubles = true
76
- end
77
- =end
78
- end
10
+ config.mock_with :rspec
11
+ config.use_transactional_fixtures = true
12
+ config.infer_base_class_for_anonymous_controllers = false
13
+ config.order = "random"
14
+ end
@@ -7,3 +7,4 @@ def log_in_as(login, plaintext_password = 'password')
7
7
  fill_in 'password', with: plaintext_password
8
8
  click_on 'Login'
9
9
  end
10
+
data/trusty_cms.gemspec CHANGED
@@ -17,11 +17,12 @@ a general purpose content managment system--not merely a blogging engine.}
17
17
  ignores = File.read('.gitignore').split("\n").inject([]) {|a,p| a + Dir[p] }
18
18
  s.files = Dir['**/*','.gitignore', 'public/.htaccess', 'log/.keep', 'vendor/extensions/.keep'] - ignores
19
19
  s.homepage = %q{https://github.com/pgharts/trusty-cms}
20
- s.rdoc_options = ["--title", "TrustyCms -- Publishing for Small Teams", "--line-numbers", "--main", "README", "--exclude", "app", "--exclude", "bin", "--exclude", "config", "--exclude", "db", "--exclude", "features", "--exclude", "lib", "--exclude", "log", "--exclude", "pkg", "--exclude", "public", "--exclude", "script", "--exclude", "spec", "--exclude", "test", "--exclude", "tmp", "--exclude", "vendor"]
20
+ s.rdoc_options = ["--title", "TrustyCms -- Content Management You Can Trust", "--line-numbers", "--main", "README", "--exclude", "app", "--exclude", "bin", "--exclude", "config", "--exclude", "db", "--exclude", "features", "--exclude", "lib", "--exclude", "log", "--exclude", "pkg", "--exclude", "public", "--exclude", "script", "--exclude", "spec", "--exclude", "test", "--exclude", "tmp", "--exclude", "vendor"]
21
21
  s.require_paths = ["lib"]
22
22
  s.rubygems_version = %q{1.3.7}
23
23
  s.summary = %q{A no-fluff content management system designed for small teams.}
24
24
  s.license = %q{MIT}
25
+ s.test_files = Dir["spec/**/*"]
25
26
 
26
27
  s.add_dependency "tzinfo", "~> 1.2"
27
28
  s.add_dependency "rails", "~> 4.2"
@@ -35,7 +36,7 @@ a general purpose content managment system--not merely a blogging engine.}
35
36
  s.add_dependency "haml", "~> 4.0"
36
37
  s.add_dependency "haml-rails", "~> 0.5" # 0.5 is rails 4+ only
37
38
  s.add_dependency "highline", "~> 1.6"
38
- s.add_dependency "mysql", "~> 2.9"
39
+ s.add_dependency "mysql2", "~> 0.4.2"
39
40
  s.add_dependency "rack", "~> 1.4"
40
41
  s.add_dependency "rack-cache", "~> 1.2"
41
42
  s.add_dependency "radius", "~> 0.7"
@@ -46,4 +47,5 @@ a general purpose content managment system--not merely a blogging engine.}
46
47
  s.add_dependency 'execjs', '~> 2.2'
47
48
  s.add_dependency 'therubyracer', '~> 0.12'
48
49
  s.add_dependency "ckeditor", "~> 4.1"
50
+ s.add_dependency "rake", "< 11.0"
49
51
  end
metadata CHANGED
@@ -1,343 +1,355 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2.pre.beta
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TrustyCms CMS dev team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-27 00:00:00.000000000 Z
11
+ date: 2016-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tzinfo
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.2'
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
26
  version: '1.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rails
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '4.2'
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
40
  version: '4.2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: protected_attributes
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 1.0.9
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 1.0.9
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: jquery-rails
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: '3.1'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '3.1'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rdoc
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '3.9'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.9'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: acts_as_tree
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: '2.1'
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
96
  version: '2.1'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: bundler
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ~>
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
103
  version: '1.7'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ~>
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '1.7'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: compass-rails
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ~>
115
+ - - "~>"
116
116
  - !ruby/object:Gem::Version
117
117
  version: '2.0'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ~>
122
+ - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '2.0'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: delocalize
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ~>
129
+ - - "~>"
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0.2'
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ~>
136
+ - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0.2'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: haml
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ~>
143
+ - - "~>"
144
144
  - !ruby/object:Gem::Version
145
145
  version: '4.0'
146
146
  type: :runtime
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - ~>
150
+ - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: '4.0'
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: haml-rails
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - ~>
157
+ - - "~>"
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0.5'
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
- - - ~>
164
+ - - "~>"
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0.5'
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: highline
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ~>
171
+ - - "~>"
172
172
  - !ruby/object:Gem::Version
173
173
  version: '1.6'
174
174
  type: :runtime
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - ~>
178
+ - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: '1.6'
181
181
  - !ruby/object:Gem::Dependency
182
- name: mysql
182
+ name: mysql2
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - ~>
185
+ - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: '2.9'
187
+ version: 0.4.2
188
188
  type: :runtime
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
- - - ~>
192
+ - - "~>"
193
193
  - !ruby/object:Gem::Version
194
- version: '2.9'
194
+ version: 0.4.2
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: rack
197
197
  requirement: !ruby/object:Gem::Requirement
198
198
  requirements:
199
- - - ~>
199
+ - - "~>"
200
200
  - !ruby/object:Gem::Version
201
201
  version: '1.4'
202
202
  type: :runtime
203
203
  prerelease: false
204
204
  version_requirements: !ruby/object:Gem::Requirement
205
205
  requirements:
206
- - - ~>
206
+ - - "~>"
207
207
  - !ruby/object:Gem::Version
208
208
  version: '1.4'
209
209
  - !ruby/object:Gem::Dependency
210
210
  name: rack-cache
211
211
  requirement: !ruby/object:Gem::Requirement
212
212
  requirements:
213
- - - ~>
213
+ - - "~>"
214
214
  - !ruby/object:Gem::Version
215
215
  version: '1.2'
216
216
  type: :runtime
217
217
  prerelease: false
218
218
  version_requirements: !ruby/object:Gem::Requirement
219
219
  requirements:
220
- - - ~>
220
+ - - "~>"
221
221
  - !ruby/object:Gem::Version
222
222
  version: '1.2'
223
223
  - !ruby/object:Gem::Dependency
224
224
  name: radius
225
225
  requirement: !ruby/object:Gem::Requirement
226
226
  requirements:
227
- - - ~>
227
+ - - "~>"
228
228
  - !ruby/object:Gem::Version
229
229
  version: '0.7'
230
230
  type: :runtime
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
- - - ~>
234
+ - - "~>"
235
235
  - !ruby/object:Gem::Version
236
236
  version: '0.7'
237
237
  - !ruby/object:Gem::Dependency
238
238
  name: RedCloth
239
239
  requirement: !ruby/object:Gem::Requirement
240
240
  requirements:
241
- - - ~>
241
+ - - "~>"
242
242
  - !ruby/object:Gem::Version
243
243
  version: '4.2'
244
244
  type: :runtime
245
245
  prerelease: false
246
246
  version_requirements: !ruby/object:Gem::Requirement
247
247
  requirements:
248
- - - ~>
248
+ - - "~>"
249
249
  - !ruby/object:Gem::Version
250
250
  version: '4.2'
251
251
  - !ruby/object:Gem::Dependency
252
252
  name: will_paginate
253
253
  requirement: !ruby/object:Gem::Requirement
254
254
  requirements:
255
- - - ~>
255
+ - - "~>"
256
256
  - !ruby/object:Gem::Version
257
257
  version: '3.0'
258
258
  type: :runtime
259
259
  prerelease: false
260
260
  version_requirements: !ruby/object:Gem::Requirement
261
261
  requirements:
262
- - - ~>
262
+ - - "~>"
263
263
  - !ruby/object:Gem::Version
264
264
  version: '3.0'
265
265
  - !ruby/object:Gem::Dependency
266
266
  name: stringex
267
267
  requirement: !ruby/object:Gem::Requirement
268
268
  requirements:
269
- - - ~>
269
+ - - "~>"
270
270
  - !ruby/object:Gem::Version
271
271
  version: '1.3'
272
272
  type: :runtime
273
273
  prerelease: false
274
274
  version_requirements: !ruby/object:Gem::Requirement
275
275
  requirements:
276
- - - ~>
276
+ - - "~>"
277
277
  - !ruby/object:Gem::Version
278
278
  version: '1.3'
279
279
  - !ruby/object:Gem::Dependency
280
280
  name: uglifier
281
281
  requirement: !ruby/object:Gem::Requirement
282
282
  requirements:
283
- - - ~>
283
+ - - "~>"
284
284
  - !ruby/object:Gem::Version
285
285
  version: '2.6'
286
286
  type: :runtime
287
287
  prerelease: false
288
288
  version_requirements: !ruby/object:Gem::Requirement
289
289
  requirements:
290
- - - ~>
290
+ - - "~>"
291
291
  - !ruby/object:Gem::Version
292
292
  version: '2.6'
293
293
  - !ruby/object:Gem::Dependency
294
294
  name: execjs
295
295
  requirement: !ruby/object:Gem::Requirement
296
296
  requirements:
297
- - - ~>
297
+ - - "~>"
298
298
  - !ruby/object:Gem::Version
299
299
  version: '2.2'
300
300
  type: :runtime
301
301
  prerelease: false
302
302
  version_requirements: !ruby/object:Gem::Requirement
303
303
  requirements:
304
- - - ~>
304
+ - - "~>"
305
305
  - !ruby/object:Gem::Version
306
306
  version: '2.2'
307
307
  - !ruby/object:Gem::Dependency
308
308
  name: therubyracer
309
309
  requirement: !ruby/object:Gem::Requirement
310
310
  requirements:
311
- - - ~>
311
+ - - "~>"
312
312
  - !ruby/object:Gem::Version
313
313
  version: '0.12'
314
314
  type: :runtime
315
315
  prerelease: false
316
316
  version_requirements: !ruby/object:Gem::Requirement
317
317
  requirements:
318
- - - ~>
318
+ - - "~>"
319
319
  - !ruby/object:Gem::Version
320
320
  version: '0.12'
321
321
  - !ruby/object:Gem::Dependency
322
322
  name: ckeditor
323
323
  requirement: !ruby/object:Gem::Requirement
324
324
  requirements:
325
- - - ~>
325
+ - - "~>"
326
326
  - !ruby/object:Gem::Version
327
327
  version: '4.1'
328
328
  type: :runtime
329
329
  prerelease: false
330
330
  version_requirements: !ruby/object:Gem::Requirement
331
331
  requirements:
332
- - - ~>
332
+ - - "~>"
333
333
  - !ruby/object:Gem::Version
334
334
  version: '4.1'
335
- description: ! 'TrustyCms is a simple and powerful publishing system designed for
336
- small teams.
337
-
335
+ - !ruby/object:Gem::Dependency
336
+ name: rake
337
+ requirement: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - "<"
340
+ - !ruby/object:Gem::Version
341
+ version: '11.0'
342
+ type: :runtime
343
+ prerelease: false
344
+ version_requirements: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - "<"
347
+ - !ruby/object:Gem::Version
348
+ version: '11.0'
349
+ description: |-
350
+ TrustyCms is a simple and powerful publishing system designed for small teams.
338
351
  It is built with Rails and is similar to Textpattern or MovableType, but is
339
-
340
- a general purpose content managment system--not merely a blogging engine.'
352
+ a general purpose content managment system--not merely a blogging engine.
341
353
  email: saalon@gmail.com
342
354
  executables:
343
355
  - trusty_cms
@@ -349,7 +361,7 @@ extra_rdoc_files:
349
361
  - INSTALL.md
350
362
  - LICENSE.md
351
363
  files:
352
- - .gitignore
364
+ - ".gitignore"
353
365
  - CHANGELOG.md
354
366
  - CODE_OF_CONDUCT.md
355
367
  - CONTRIBUTORS.md
@@ -477,7 +489,6 @@ files:
477
489
  - app/controllers/admin/users_controller.rb
478
490
  - app/controllers/admin/welcome_controller.rb
479
491
  - app/controllers/application_controller.rb
480
- - app/controllers/application_controller.rb.rails2
481
492
  - app/controllers/site_controller.rb
482
493
  - app/helpers/admin/configuration_helper.rb
483
494
  - app/helpers/admin/export_helper.rb
@@ -492,7 +503,6 @@ files:
492
503
  - app/helpers/admin/users_helper.rb
493
504
  - app/helpers/admin/welcome_helper.rb
494
505
  - app/helpers/application_helper.rb
495
- - app/helpers/application_helper.rb.rails2
496
506
  - app/helpers/site_helper.rb
497
507
  - app/models/deprecated_tags.rb
498
508
  - app/models/file_not_found_page.rb
@@ -551,13 +561,9 @@ files:
551
561
  - config/application.rb
552
562
  - config/boot.rb
553
563
  - config/database.mysql.yml
554
- - config/database.yml.rails2
555
564
  - config/environment.rb
556
- - config/environment.rb.rails2
557
565
  - config/environments/development.rb
558
- - config/environments/development.rb.rails2
559
566
  - config/environments/production.rb
560
- - config/environments/production.rb.rails2
561
567
  - config/environments/test.rb
562
568
  - config/initializers/active_record_extensions.rb
563
569
  - config/initializers/ckeditor.rb
@@ -572,18 +578,14 @@ files:
572
578
  - config/locales/en.yml
573
579
  - config/locales/en_available_tags.yml
574
580
  - config/routes.rb
575
- - config/routes.rb.rails2
576
581
  - config/trustygems.yml
577
582
  - db/migrate/001_create_radiant_tables.rb
578
583
  - db/migrate/002_insert_initial_data.rb
579
- - db/migrate/003_rename_behavior_column.rb
580
584
  - db/migrate/004_rename_filter_column.rb
581
585
  - db/migrate/005_add_virtual_column_to_page.rb
582
586
  - db/migrate/007_remove_virtual_column_from_page.rb
583
587
  - db/migrate/008_add_virtual_column_to_page_again.rb
584
588
  - db/migrate/009_add_content_type_field_to_layout.rb
585
- - db/migrate/010_merge_behaviors_and_pages.rb
586
- - db/migrate/011_rename_type_column_on_page_to_class_name.rb
587
589
  - db/migrate/012_create_extension_meta.rb
588
590
  - db/migrate/013_add_notes_field_to_user.rb
589
591
  - db/migrate/014_rename_config_default_parts_key.rb
@@ -591,7 +593,6 @@ files:
591
593
  - db/migrate/016_add_sessions.rb
592
594
  - db/migrate/017_rename_created_by_updated_by_columns.rb
593
595
  - db/migrate/018_add_description_and_keywords_to_pages.rb
594
- - db/migrate/019_add_salt_to_users.rb
595
596
  - db/migrate/020_add_session_info_to_users.rb
596
597
  - db/migrate/021_remove_session_expire_from_users.rb
597
598
  - db/migrate/20081203140407_add_indexes.rb
@@ -749,110 +750,53 @@ files:
749
750
  - public/favicon.ico
750
751
  - public/loading-iframe.html
751
752
  - public/robots.txt
752
- - public/stylesheets/admin/main.css
753
- - public/stylesheets/admin/overrides.css
754
753
  - script/extension
755
754
  - script/rails
756
755
  - spec/ci/database.mysql.yml
756
+ - spec/dummy/README.rdoc
757
+ - spec/dummy/Rakefile
758
+ - spec/dummy/bin/bundle
759
+ - spec/dummy/bin/rails
760
+ - spec/dummy/bin/rake
761
+ - spec/dummy/bin/setup
762
+ - spec/dummy/config.ru
763
+ - spec/dummy/config/application.rb
764
+ - spec/dummy/config/boot.rb
765
+ - spec/dummy/config/database.yml
766
+ - spec/dummy/config/environment.rb
767
+ - spec/dummy/config/environments/development.rb
768
+ - spec/dummy/config/environments/production.rb
769
+ - spec/dummy/config/environments/test.rb
770
+ - spec/dummy/config/initializers/assets.rb
771
+ - spec/dummy/config/initializers/backtrace_silencers.rb
772
+ - spec/dummy/config/initializers/cookies_serializer.rb
773
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
774
+ - spec/dummy/config/initializers/inflections.rb
775
+ - spec/dummy/config/initializers/mime_types.rb
776
+ - spec/dummy/config/initializers/session_store.rb
777
+ - spec/dummy/config/initializers/trusty_cms_config.rb
778
+ - spec/dummy/config/initializers/wrap_parameters.rb
779
+ - spec/dummy/config/locales/en.yml
780
+ - spec/dummy/config/routes.rb
781
+ - spec/dummy/config/secrets.yml
782
+ - spec/dummy/db/schema.rb
783
+ - spec/dummy/log/test.log
784
+ - spec/dummy/public/404.html
785
+ - spec/dummy/public/422.html
786
+ - spec/dummy/public/500.html
787
+ - spec/dummy/public/favicon.ico
788
+ - spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig
789
+ - spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime
790
+ - spec/dummy/tmp/radiant_config_cache.txt
757
791
  - spec/features/admin_login_spec.rb
758
792
  - spec/features/config_spec.rb
759
793
  - spec/features/javascript_smoke_spec.rb
760
794
  - spec/features/layouts_spec.rb
761
795
  - spec/features/pages_spec.rb
762
796
  - spec/fixtures/users.yml
763
- - spec/helpers/regions_helper_spec.rb
764
797
  - spec/rails_helper.rb
765
798
  - spec/spec_helper.rb
766
799
  - spec/support/custom_actions.rb
767
- - test/test_helper.rb.rails2
768
- - tmp/cache/747/A70/TrustyCms%3A%3AConfig
769
- - tmp/cache/85C/FA0/TrustyCms.cache_mtime
770
- - tmp/cache_files_test/a.txt
771
- - tmp/cache_files_test/all.txt
772
- - tmp/cache_files_test/b.txt
773
- - tmp/config/radiant_config.yml
774
- - tmp/sass-cache/1a137f46a4706893cc07b2aa949a92cf851d936f/_boxes.sassc
775
- - tmp/sass-cache/1a137f46a4706893cc07b2aa949a92cf851d936f/_gradients.sassc
776
- - tmp/sass-cache/1a137f46a4706893cc07b2aa949a92cf851d936f/_links.sassc
777
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_appearance.scssc
778
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_background-clip.scssc
779
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_background-origin.scssc
780
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_background-size.scssc
781
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_border-radius.scssc
782
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_box-shadow.scssc
783
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_box-sizing.scssc
784
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_box.scssc
785
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_columns.scssc
786
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_filter.scssc
787
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_font-face.scssc
788
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_hyphenation.scssc
789
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_images.scssc
790
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_inline-block.scssc
791
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_opacity.scssc
792
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_regions.scssc
793
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_shared.scssc
794
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_text-shadow.scssc
795
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_transform.scssc
796
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_transition.scssc
797
- - tmp/sass-cache/28de5f95620abb7d2385166aed681f8b13104764/_user-interface.scssc
798
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_actions.sassc
799
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_avatars.sassc
800
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_content.sassc
801
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_dateinput.sassc
802
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_deprecated.sassc
803
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_dropdown.sassc
804
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_footer.sassc
805
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_forms.sassc
806
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_header.sassc
807
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_index.sassc
808
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_layout.sassc
809
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_messages.sassc
810
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_popup.sassc
811
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_tabcontrol.sassc
812
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_toolbar.sassc
813
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_typography.sassc
814
- - tmp/sass-cache/2f4278d4f2cc4f21f31aa67430e462fbca6b47a0/_validations.sassc
815
- - tmp/sass-cache/33c9f77b54ab77293741bf5159eedff124a39fc1/_color.scssc
816
- - tmp/sass-cache/33c9f77b54ab77293741bf5159eedff124a39fc1/_general.scssc
817
- - tmp/sass-cache/33c9f77b54ab77293741bf5159eedff124a39fc1/_sprites.scssc
818
- - tmp/sass-cache/33c9f77b54ab77293741bf5159eedff124a39fc1/_tables.scssc
819
- - tmp/sass-cache/5683573556a6b271b3ffade55f4ff32a60e7c0f0/_base.scssc
820
- - tmp/sass-cache/5683573556a6b271b3ffade55f4ff32a60e7c0f0/_sprite-img.scssc
821
- - tmp/sass-cache/6159fdf943b5ffc54b901a34cdfcfc7e6f736834/_alternating-rows-and-columns.scssc
822
- - tmp/sass-cache/6159fdf943b5ffc54b901a34cdfcfc7e6f736834/_borders.scssc
823
- - tmp/sass-cache/6159fdf943b5ffc54b901a34cdfcfc7e6f736834/_scaffolding.scssc
824
- - tmp/sass-cache/81fb0626d3f9dbbcc1f43df416db1c97b6ad512a/_links.scssc
825
- - tmp/sass-cache/81fb0626d3f9dbbcc1f43df416db1c97b6ad512a/_lists.scssc
826
- - tmp/sass-cache/81fb0626d3f9dbbcc1f43df416db1c97b6ad512a/_text.scssc
827
- - tmp/sass-cache/81fb0626d3f9dbbcc1f43df416db1c97b6ad512a/_vertical_rhythm.scssc
828
- - tmp/sass-cache/87c1de4edf14dc5f527f65e2080e0faa325354aa/_hover-link.scssc
829
- - tmp/sass-cache/87c1de4edf14dc5f527f65e2080e0faa325354aa/_link-colors.scssc
830
- - tmp/sass-cache/87c1de4edf14dc5f527f65e2080e0faa325354aa/_unstyled-link.scssc
831
- - tmp/sass-cache/8b412a89f899813981285eadb5f08e52b94dfb65/_css3.scssc
832
- - tmp/sass-cache/8b412a89f899813981285eadb5f08e52b94dfb65/_support.scssc
833
- - tmp/sass-cache/8b412a89f899813981285eadb5f08e52b94dfb65/_typography.scssc
834
- - tmp/sass-cache/8b412a89f899813981285eadb5f08e52b94dfb65/_utilities.scssc
835
- - tmp/sass-cache/92844cd19a320f87ef960171cea4f33d1a07339c/_contrast.scssc
836
- - tmp/sass-cache/a97de1041408f914478b9e7943c5c6c2d221d4c0/_ellipsis.scssc
837
- - tmp/sass-cache/a97de1041408f914478b9e7943c5c6c2d221d4c0/_force-wrap.scssc
838
- - tmp/sass-cache/a97de1041408f914478b9e7943c5c6c2d221d4c0/_nowrap.scssc
839
- - tmp/sass-cache/a97de1041408f914478b9e7943c5c6c2d221d4c0/_replacement.scssc
840
- - tmp/sass-cache/b3d80baefd48593d8c08815ba2d83e209f5dad6f/_grid-background.scssc
841
- - tmp/sass-cache/b92bfc773efa04d930ffa0b3331244a1f378caa7/_compass.scssc
842
- - tmp/sass-cache/c055a2360b102aff9247707235d9dce9214f6c4f/_clearfix.scssc
843
- - tmp/sass-cache/c055a2360b102aff9247707235d9dce9214f6c4f/_float.scssc
844
- - tmp/sass-cache/c055a2360b102aff9247707235d9dce9214f6c4f/_hacks.scssc
845
- - tmp/sass-cache/c055a2360b102aff9247707235d9dce9214f6c4f/_min.scssc
846
- - tmp/sass-cache/c055a2360b102aff9247707235d9dce9214f6c4f/_reset.scssc
847
- - tmp/sass-cache/c055a2360b102aff9247707235d9dce9214f6c4f/_tag-cloud.scssc
848
- - tmp/sass-cache/c3fa060b99d9ed1d9740af472ecc747182e2ea93/_base.sassc
849
- - tmp/sass-cache/c3fa060b99d9ed1d9740af472ecc747182e2ea93/main.sassc
850
- - tmp/sass-cache/c3fa060b99d9ed1d9740af472ecc747182e2ea93/overrides.sassc
851
- - tmp/sass-cache/d2bf234de18cb20fe8238c9224b9863ed5d268c6/_bullets.scssc
852
- - tmp/sass-cache/d2bf234de18cb20fe8238c9224b9863ed5d268c6/_horizontal-list.scssc
853
- - tmp/sass-cache/d2bf234de18cb20fe8238c9224b9863ed5d268c6/_inline-block-list.scssc
854
- - tmp/sass-cache/d2bf234de18cb20fe8238c9224b9863ed5d268c6/_inline-list.scssc
855
- - tmp/sass-cache/dc9647e96d50c02214aff50e88308a74bf56d1d7/_utilities.scssc
856
800
  - trusty_cms.gemspec
857
801
  homepage: https://github.com/pgharts/trusty-cms
858
802
  licenses:
@@ -860,55 +804,100 @@ licenses:
860
804
  metadata: {}
861
805
  post_install_message:
862
806
  rdoc_options:
863
- - --title
864
- - TrustyCms -- Publishing for Small Teams
865
- - --line-numbers
866
- - --main
807
+ - "--title"
808
+ - TrustyCms -- Content Management You Can Trust
809
+ - "--line-numbers"
810
+ - "--main"
867
811
  - README
868
- - --exclude
812
+ - "--exclude"
869
813
  - app
870
- - --exclude
814
+ - "--exclude"
871
815
  - bin
872
- - --exclude
816
+ - "--exclude"
873
817
  - config
874
- - --exclude
818
+ - "--exclude"
875
819
  - db
876
- - --exclude
820
+ - "--exclude"
877
821
  - features
878
- - --exclude
822
+ - "--exclude"
879
823
  - lib
880
- - --exclude
824
+ - "--exclude"
881
825
  - log
882
- - --exclude
826
+ - "--exclude"
883
827
  - pkg
884
- - --exclude
828
+ - "--exclude"
885
829
  - public
886
- - --exclude
830
+ - "--exclude"
887
831
  - script
888
- - --exclude
832
+ - "--exclude"
889
833
  - spec
890
- - --exclude
834
+ - "--exclude"
891
835
  - test
892
- - --exclude
836
+ - "--exclude"
893
837
  - tmp
894
- - --exclude
838
+ - "--exclude"
895
839
  - vendor
896
840
  require_paths:
897
841
  - lib
898
842
  required_ruby_version: !ruby/object:Gem::Requirement
899
843
  requirements:
900
- - - ! '>='
844
+ - - ">="
901
845
  - !ruby/object:Gem::Version
902
846
  version: '0'
903
847
  required_rubygems_version: !ruby/object:Gem::Requirement
904
848
  requirements:
905
- - - ! '>'
849
+ - - ">"
906
850
  - !ruby/object:Gem::Version
907
851
  version: 1.3.1
908
852
  requirements: []
909
853
  rubyforge_project:
910
- rubygems_version: 2.4.5
854
+ rubygems_version: 2.4.8
911
855
  signing_key:
912
856
  specification_version: 4
913
857
  summary: A no-fluff content management system designed for small teams.
914
- test_files: []
858
+ test_files:
859
+ - spec/ci/database.mysql.yml
860
+ - spec/dummy/bin/bundle
861
+ - spec/dummy/bin/rails
862
+ - spec/dummy/bin/rake
863
+ - spec/dummy/bin/setup
864
+ - spec/dummy/config/application.rb
865
+ - spec/dummy/config/boot.rb
866
+ - spec/dummy/config/database.yml
867
+ - spec/dummy/config/environment.rb
868
+ - spec/dummy/config/environments/development.rb
869
+ - spec/dummy/config/environments/production.rb
870
+ - spec/dummy/config/environments/test.rb
871
+ - spec/dummy/config/initializers/assets.rb
872
+ - spec/dummy/config/initializers/backtrace_silencers.rb
873
+ - spec/dummy/config/initializers/cookies_serializer.rb
874
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
875
+ - spec/dummy/config/initializers/inflections.rb
876
+ - spec/dummy/config/initializers/mime_types.rb
877
+ - spec/dummy/config/initializers/session_store.rb
878
+ - spec/dummy/config/initializers/trusty_cms_config.rb
879
+ - spec/dummy/config/initializers/wrap_parameters.rb
880
+ - spec/dummy/config/locales/en.yml
881
+ - spec/dummy/config/routes.rb
882
+ - spec/dummy/config/secrets.yml
883
+ - spec/dummy/config.ru
884
+ - spec/dummy/db/schema.rb
885
+ - spec/dummy/log/test.log
886
+ - spec/dummy/public/404.html
887
+ - spec/dummy/public/422.html
888
+ - spec/dummy/public/500.html
889
+ - spec/dummy/public/favicon.ico
890
+ - spec/dummy/Rakefile
891
+ - spec/dummy/README.rdoc
892
+ - spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig
893
+ - spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime
894
+ - spec/dummy/tmp/radiant_config_cache.txt
895
+ - spec/features/admin_login_spec.rb
896
+ - spec/features/config_spec.rb
897
+ - spec/features/javascript_smoke_spec.rb
898
+ - spec/features/layouts_spec.rb
899
+ - spec/features/pages_spec.rb
900
+ - spec/fixtures/users.yml
901
+ - spec/rails_helper.rb
902
+ - spec/spec_helper.rb
903
+ - spec/support/custom_actions.rb