rails-acu 1.2.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.
Files changed (117) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.project +18 -0
  4. data/.rspec +3 -0
  5. data/.travis.yml +30 -0
  6. data/Gemfile +30 -0
  7. data/Gemfile.lock +169 -0
  8. data/MIT-LICENSE +20 -0
  9. data/README.md +221 -0
  10. data/Rakefile +26 -0
  11. data/bin/rails +13 -0
  12. data/lib/acu/configs.rb +30 -0
  13. data/lib/acu/engine.rb +9 -0
  14. data/lib/acu/errors.rb +37 -0
  15. data/lib/acu/helpers/helpers.rb +9 -0
  16. data/lib/acu/injectors.rb +15 -0
  17. data/lib/acu/listeners.rb +18 -0
  18. data/lib/acu/monitor.rb +201 -0
  19. data/lib/acu/rules.rb +134 -0
  20. data/lib/acu/utilities.rb +14 -0
  21. data/lib/acu/version.rb +3 -0
  22. data/lib/generators/acu/install_generator.rb +20 -0
  23. data/lib/generators/templates/rules.rb +34 -0
  24. data/lib/generators/templates/setup.rb +30 -0
  25. data/lib/rails-acu.rb +26 -0
  26. data/rails-acu-1.2.0.gem +0 -0
  27. data/rails-acu.gemspec +23 -0
  28. data/spec/dummy/Rakefile +6 -0
  29. data/spec/dummy/app/assets/config/manifest.js +5 -0
  30. data/spec/dummy/app/assets/javascripts/admin/manage.js +2 -0
  31. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  32. data/spec/dummy/app/assets/javascripts/books.js +2 -0
  33. data/spec/dummy/app/assets/javascripts/cable.js +12 -0
  34. data/spec/dummy/app/assets/javascripts/comments.js +2 -0
  35. data/spec/dummy/app/assets/javascripts/home.js +2 -0
  36. data/spec/dummy/app/assets/stylesheets/admin/manage.css +4 -0
  37. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  38. data/spec/dummy/app/assets/stylesheets/books.css +4 -0
  39. data/spec/dummy/app/assets/stylesheets/comments.css +4 -0
  40. data/spec/dummy/app/assets/stylesheets/home.css +4 -0
  41. data/spec/dummy/app/assets/stylesheets/scaffold.css +84 -0
  42. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  43. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  44. data/spec/dummy/app/controllers/admin/manage_controller.rb +19 -0
  45. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  46. data/spec/dummy/app/controllers/home_controller.rb +7 -0
  47. data/spec/dummy/app/helpers/admin/manage_helper.rb +2 -0
  48. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  49. data/spec/dummy/app/helpers/home_helper.rb +2 -0
  50. data/spec/dummy/app/jobs/application_job.rb +2 -0
  51. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  52. data/spec/dummy/app/models/application_record.rb +3 -0
  53. data/spec/dummy/app/models/user.rb +8 -0
  54. data/spec/dummy/app/models/user_type.rb +3 -0
  55. data/spec/dummy/app/views/admin/manage/add.html.erb +2 -0
  56. data/spec/dummy/app/views/admin/manage/delete.html.erb +2 -0
  57. data/spec/dummy/app/views/admin/manage/index.html.erb +2 -0
  58. data/spec/dummy/app/views/admin/manage/list.html.erb +2 -0
  59. data/spec/dummy/app/views/admin/manage/prove.html.erb +2 -0
  60. data/spec/dummy/app/views/admin/manage/show.html.erb +2 -0
  61. data/spec/dummy/app/views/home/contact.html.erb +2 -0
  62. data/spec/dummy/app/views/home/index.html.erb +21 -0
  63. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  64. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  65. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  66. data/spec/dummy/bin/bundle +3 -0
  67. data/spec/dummy/bin/rails +4 -0
  68. data/spec/dummy/bin/rake +4 -0
  69. data/spec/dummy/bin/setup +34 -0
  70. data/spec/dummy/bin/update +29 -0
  71. data/spec/dummy/config.ru +5 -0
  72. data/spec/dummy/config/application.rb +23 -0
  73. data/spec/dummy/config/boot.rb +5 -0
  74. data/spec/dummy/config/cable.yml +9 -0
  75. data/spec/dummy/config/database.yml +25 -0
  76. data/spec/dummy/config/environment.rb +5 -0
  77. data/spec/dummy/config/environments/development.rb +54 -0
  78. data/spec/dummy/config/environments/production.rb +86 -0
  79. data/spec/dummy/config/environments/test.rb +42 -0
  80. data/spec/dummy/config/initializers/acu_rules.rb +31 -0
  81. data/spec/dummy/config/initializers/acu_setup.rb +14 -0
  82. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  83. data/spec/dummy/config/initializers/assets.rb +11 -0
  84. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  85. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  86. data/spec/dummy/config/initializers/devise.rb +277 -0
  87. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  88. data/spec/dummy/config/initializers/inflections.rb +16 -0
  89. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  90. data/spec/dummy/config/initializers/new_framework_defaults.rb +24 -0
  91. data/spec/dummy/config/initializers/session_store.rb +3 -0
  92. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  93. data/spec/dummy/config/locales/devise.en.yml +64 -0
  94. data/spec/dummy/config/locales/en.yml +23 -0
  95. data/spec/dummy/config/puma.rb +47 -0
  96. data/spec/dummy/config/routes.rb +19 -0
  97. data/spec/dummy/config/secrets.yml +22 -0
  98. data/spec/dummy/config/spring.rb +6 -0
  99. data/spec/dummy/db/migrate/20170329111257_create_books.rb +9 -0
  100. data/spec/dummy/db/migrate/20170329111323_create_comments.rb +10 -0
  101. data/spec/dummy/db/migrate/20170329114943_devise_create_users.rb +42 -0
  102. data/spec/dummy/db/migrate/20170329120950_create_admin_user_types.rb +15 -0
  103. data/spec/dummy/db/migrate/20170329121612_add_user_type_id_to_users.rb +5 -0
  104. data/spec/dummy/db/schema.rb +59 -0
  105. data/spec/dummy/db/seeds.rb +39 -0
  106. data/spec/dummy/public/404.html +67 -0
  107. data/spec/dummy/public/422.html +67 -0
  108. data/spec/dummy/public/500.html +66 -0
  109. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  110. data/spec/dummy/public/apple-touch-icon.png +0 -0
  111. data/spec/dummy/public/favicon.ico +0 -0
  112. data/spec/dummy/spec/controllers/admin/manage_controller_spec.rb +72 -0
  113. data/spec/dummy/spec/controllers/application_controller_spec.rb +14 -0
  114. data/spec/dummy/spec/controllers/home_controller_spec.rb +560 -0
  115. data/spec/rails_helper.rb +59 -0
  116. data/spec/spec_helper.rb +104 -0
  117. metadata +268 -0
@@ -0,0 +1,59 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV['RAILS_ENV'] ||= 'test'
3
+ require File.expand_path('../dummy/config/environment', __FILE__)
4
+ # Prevent database truncation if the environment is production
5
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
6
+ require 'spec_helper'
7
+ require 'rspec/rails'
8
+ # Add additional requires below this line. Rails is not loaded until this point!
9
+
10
+ # Requires supporting ruby files with custom matchers and macros, etc, in
11
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
12
+ # run as spec files by default. This means that files in spec/support that end
13
+ # in _spec.rb will both be required and run as specs, causing the specs to be
14
+ # run twice. It is recommended that you do not name files matching this glob to
15
+ # end with _spec.rb. You can configure this pattern with the --pattern
16
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
17
+ #
18
+ # The following line is provided for convenience purposes. It has the downside
19
+ # of increasing the boot-up time by auto-requiring all files in the support
20
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
21
+ # require only the support files necessary.
22
+ #
23
+ # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
24
+
25
+ # Checks for pending migration and applies them before tests are run.
26
+ # If you are not using ActiveRecord, you can remove this line.
27
+ ActiveRecord::Migration.maintain_test_schema!
28
+
29
+ RSpec.configure do |config|
30
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
31
+ config.fixture_path = "#{::Rails.root}/spec/fixtures"
32
+
33
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
34
+ # examples within a transaction, remove the following line or assign false
35
+ # instead of true.
36
+ config.use_transactional_fixtures = true
37
+
38
+ # RSpec Rails can automatically mix in different behaviours to your tests
39
+ # based on their file location, for example enabling you to call `get` and
40
+ # `post` in specs under `spec/controllers`.
41
+ #
42
+ # You can disable this behaviour by removing the line below, and instead
43
+ # explicitly tag your specs with their type, e.g.:
44
+ #
45
+ # RSpec.describe UsersController, :type => :controller do
46
+ # # ...
47
+ # end
48
+ #
49
+ # The different available types are documented in the features, such as in
50
+ # https://relishapp.com/rspec/rspec-rails/docs
51
+ config.infer_spec_type_from_file_location!
52
+
53
+ # Filter lines from Rails gems in backtraces.
54
+ config.filter_rails_from_backtrace!
55
+ # arbitrary gems may also be filtered via:
56
+ # config.filter_gems_from_backtrace("gem name")
57
+
58
+ config.include Devise::Test::ControllerHelpers, type: :controller
59
+ end
@@ -0,0 +1,104 @@
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
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
33
+
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
41
+ end
42
+
43
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
44
+ # have no way to turn it off -- the option exists only for backwards
45
+ # compatibility in RSpec 3). It causes shared context metadata to be
46
+ # inherited by the metadata hash of host groups and examples, rather than
47
+ # triggering implicit auto-inclusion in groups with matching metadata.
48
+ config.shared_context_metadata_behavior = :apply_to_host_groups
49
+
50
+ # seed database everytime it suns
51
+ config.before(:suite) do
52
+ Rails.application.load_seed # loading seeds
53
+ end
54
+
55
+ # The settings below are suggested to provide a good initial experience
56
+ # with RSpec, but feel free to customize to your heart's content.
57
+ =begin
58
+ # This allows you to limit a spec run to individual examples or groups
59
+ # you care about by tagging them with `:focus` metadata. When nothing
60
+ # is tagged with `:focus`, all examples get run. RSpec also provides
61
+ # aliases for `it`, `describe`, and `context` that include `:focus`
62
+ # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
63
+ config.filter_run_when_matching :focus
64
+
65
+ # Allows RSpec to persist some state between runs in order to support
66
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
67
+ # you configure your source control system to ignore this file.
68
+ config.example_status_persistence_file_path = "spec/examples.txt"
69
+
70
+ # Limits the available syntax to the non-monkey patched syntax that is
71
+ # recommended. For more details, see:
72
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
73
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
74
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
75
+ config.disable_monkey_patching!
76
+
77
+ # Many RSpec users commonly either run the entire suite or an individual
78
+ # file, and it's useful to allow more verbose output when running an
79
+ # individual spec file.
80
+ if config.files_to_run.one?
81
+ # Use the documentation formatter for detailed output,
82
+ # unless a formatter has already been configured
83
+ # (e.g. via a command-line flag).
84
+ config.default_formatter = 'doc'
85
+ end
86
+
87
+ # Print the 10 slowest examples and example groups at the
88
+ # end of the spec run, to help surface which specs are running
89
+ # particularly slow.
90
+ config.profile_examples = 10
91
+
92
+ # Run specs in random order to surface order dependencies. If you find an
93
+ # order dependency and want to debug it, you can fix the order by providing
94
+ # the seed, which is printed after each run.
95
+ # --seed 1234
96
+ config.order = :random
97
+
98
+ # Seed global randomization in this process using the `--seed` CLI option.
99
+ # Setting this allows you to use `--seed` to deterministically reproduce
100
+ # test failures related to randomization by passing the same `--seed` value
101
+ # as the one that triggered the failure.
102
+ Kernel.srand config.seed
103
+ =end
104
+ end
metadata ADDED
@@ -0,0 +1,268 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails-acu
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Dariush Hasanpour
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-04-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 5.0.0
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 5.0.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: 5.0.0
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 5.0.0
33
+ description: Access control unit for controller-action sets
34
+ email:
35
+ - b.g.dariush@gmail.com
36
+ executables: []
37
+ extensions: []
38
+ extra_rdoc_files: []
39
+ files:
40
+ - ".gitignore"
41
+ - ".project"
42
+ - ".rspec"
43
+ - ".travis.yml"
44
+ - Gemfile
45
+ - Gemfile.lock
46
+ - MIT-LICENSE
47
+ - README.md
48
+ - Rakefile
49
+ - bin/rails
50
+ - lib/acu/configs.rb
51
+ - lib/acu/engine.rb
52
+ - lib/acu/errors.rb
53
+ - lib/acu/helpers/helpers.rb
54
+ - lib/acu/injectors.rb
55
+ - lib/acu/listeners.rb
56
+ - lib/acu/monitor.rb
57
+ - lib/acu/rules.rb
58
+ - lib/acu/utilities.rb
59
+ - lib/acu/version.rb
60
+ - lib/generators/acu/install_generator.rb
61
+ - lib/generators/templates/rules.rb
62
+ - lib/generators/templates/setup.rb
63
+ - lib/rails-acu.rb
64
+ - rails-acu-1.2.0.gem
65
+ - rails-acu.gemspec
66
+ - spec/dummy/Rakefile
67
+ - spec/dummy/app/assets/config/manifest.js
68
+ - spec/dummy/app/assets/javascripts/admin/manage.js
69
+ - spec/dummy/app/assets/javascripts/application.js
70
+ - spec/dummy/app/assets/javascripts/books.js
71
+ - spec/dummy/app/assets/javascripts/cable.js
72
+ - spec/dummy/app/assets/javascripts/comments.js
73
+ - spec/dummy/app/assets/javascripts/home.js
74
+ - spec/dummy/app/assets/stylesheets/admin/manage.css
75
+ - spec/dummy/app/assets/stylesheets/application.css
76
+ - spec/dummy/app/assets/stylesheets/books.css
77
+ - spec/dummy/app/assets/stylesheets/comments.css
78
+ - spec/dummy/app/assets/stylesheets/home.css
79
+ - spec/dummy/app/assets/stylesheets/scaffold.css
80
+ - spec/dummy/app/channels/application_cable/channel.rb
81
+ - spec/dummy/app/channels/application_cable/connection.rb
82
+ - spec/dummy/app/controllers/admin/manage_controller.rb
83
+ - spec/dummy/app/controllers/application_controller.rb
84
+ - spec/dummy/app/controllers/home_controller.rb
85
+ - spec/dummy/app/helpers/admin/manage_helper.rb
86
+ - spec/dummy/app/helpers/application_helper.rb
87
+ - spec/dummy/app/helpers/home_helper.rb
88
+ - spec/dummy/app/jobs/application_job.rb
89
+ - spec/dummy/app/mailers/application_mailer.rb
90
+ - spec/dummy/app/models/application_record.rb
91
+ - spec/dummy/app/models/user.rb
92
+ - spec/dummy/app/models/user_type.rb
93
+ - spec/dummy/app/views/admin/manage/add.html.erb
94
+ - spec/dummy/app/views/admin/manage/delete.html.erb
95
+ - spec/dummy/app/views/admin/manage/index.html.erb
96
+ - spec/dummy/app/views/admin/manage/list.html.erb
97
+ - spec/dummy/app/views/admin/manage/prove.html.erb
98
+ - spec/dummy/app/views/admin/manage/show.html.erb
99
+ - spec/dummy/app/views/home/contact.html.erb
100
+ - spec/dummy/app/views/home/index.html.erb
101
+ - spec/dummy/app/views/layouts/application.html.erb
102
+ - spec/dummy/app/views/layouts/mailer.html.erb
103
+ - spec/dummy/app/views/layouts/mailer.text.erb
104
+ - spec/dummy/bin/bundle
105
+ - spec/dummy/bin/rails
106
+ - spec/dummy/bin/rake
107
+ - spec/dummy/bin/setup
108
+ - spec/dummy/bin/update
109
+ - spec/dummy/config.ru
110
+ - spec/dummy/config/application.rb
111
+ - spec/dummy/config/boot.rb
112
+ - spec/dummy/config/cable.yml
113
+ - spec/dummy/config/database.yml
114
+ - spec/dummy/config/environment.rb
115
+ - spec/dummy/config/environments/development.rb
116
+ - spec/dummy/config/environments/production.rb
117
+ - spec/dummy/config/environments/test.rb
118
+ - spec/dummy/config/initializers/acu_rules.rb
119
+ - spec/dummy/config/initializers/acu_setup.rb
120
+ - spec/dummy/config/initializers/application_controller_renderer.rb
121
+ - spec/dummy/config/initializers/assets.rb
122
+ - spec/dummy/config/initializers/backtrace_silencers.rb
123
+ - spec/dummy/config/initializers/cookies_serializer.rb
124
+ - spec/dummy/config/initializers/devise.rb
125
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
126
+ - spec/dummy/config/initializers/inflections.rb
127
+ - spec/dummy/config/initializers/mime_types.rb
128
+ - spec/dummy/config/initializers/new_framework_defaults.rb
129
+ - spec/dummy/config/initializers/session_store.rb
130
+ - spec/dummy/config/initializers/wrap_parameters.rb
131
+ - spec/dummy/config/locales/devise.en.yml
132
+ - spec/dummy/config/locales/en.yml
133
+ - spec/dummy/config/puma.rb
134
+ - spec/dummy/config/routes.rb
135
+ - spec/dummy/config/secrets.yml
136
+ - spec/dummy/config/spring.rb
137
+ - spec/dummy/db/migrate/20170329111257_create_books.rb
138
+ - spec/dummy/db/migrate/20170329111323_create_comments.rb
139
+ - spec/dummy/db/migrate/20170329114943_devise_create_users.rb
140
+ - spec/dummy/db/migrate/20170329120950_create_admin_user_types.rb
141
+ - spec/dummy/db/migrate/20170329121612_add_user_type_id_to_users.rb
142
+ - spec/dummy/db/schema.rb
143
+ - spec/dummy/db/seeds.rb
144
+ - spec/dummy/public/404.html
145
+ - spec/dummy/public/422.html
146
+ - spec/dummy/public/500.html
147
+ - spec/dummy/public/apple-touch-icon-precomposed.png
148
+ - spec/dummy/public/apple-touch-icon.png
149
+ - spec/dummy/public/favicon.ico
150
+ - spec/dummy/spec/controllers/admin/manage_controller_spec.rb
151
+ - spec/dummy/spec/controllers/application_controller_spec.rb
152
+ - spec/dummy/spec/controllers/home_controller_spec.rb
153
+ - spec/rails_helper.rb
154
+ - spec/spec_helper.rb
155
+ homepage: https://github.com/noise2/rails-acu
156
+ licenses:
157
+ - MIT
158
+ metadata: {}
159
+ post_install_message:
160
+ rdoc_options: []
161
+ require_paths:
162
+ - lib
163
+ required_ruby_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ">="
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ required_rubygems_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ requirements: []
174
+ rubyforge_project:
175
+ rubygems_version: 2.6.11
176
+ signing_key:
177
+ specification_version: 4
178
+ summary: Access Control Unit
179
+ test_files:
180
+ - spec/dummy/Rakefile
181
+ - spec/dummy/app/assets/config/manifest.js
182
+ - spec/dummy/app/assets/javascripts/admin/manage.js
183
+ - spec/dummy/app/assets/javascripts/application.js
184
+ - spec/dummy/app/assets/javascripts/books.js
185
+ - spec/dummy/app/assets/javascripts/cable.js
186
+ - spec/dummy/app/assets/javascripts/comments.js
187
+ - spec/dummy/app/assets/javascripts/home.js
188
+ - spec/dummy/app/assets/stylesheets/admin/manage.css
189
+ - spec/dummy/app/assets/stylesheets/application.css
190
+ - spec/dummy/app/assets/stylesheets/books.css
191
+ - spec/dummy/app/assets/stylesheets/comments.css
192
+ - spec/dummy/app/assets/stylesheets/home.css
193
+ - spec/dummy/app/assets/stylesheets/scaffold.css
194
+ - spec/dummy/app/channels/application_cable/channel.rb
195
+ - spec/dummy/app/channels/application_cable/connection.rb
196
+ - spec/dummy/app/controllers/admin/manage_controller.rb
197
+ - spec/dummy/app/controllers/application_controller.rb
198
+ - spec/dummy/app/controllers/home_controller.rb
199
+ - spec/dummy/app/helpers/admin/manage_helper.rb
200
+ - spec/dummy/app/helpers/application_helper.rb
201
+ - spec/dummy/app/helpers/home_helper.rb
202
+ - spec/dummy/app/jobs/application_job.rb
203
+ - spec/dummy/app/mailers/application_mailer.rb
204
+ - spec/dummy/app/models/application_record.rb
205
+ - spec/dummy/app/models/user.rb
206
+ - spec/dummy/app/models/user_type.rb
207
+ - spec/dummy/app/views/admin/manage/add.html.erb
208
+ - spec/dummy/app/views/admin/manage/delete.html.erb
209
+ - spec/dummy/app/views/admin/manage/index.html.erb
210
+ - spec/dummy/app/views/admin/manage/list.html.erb
211
+ - spec/dummy/app/views/admin/manage/prove.html.erb
212
+ - spec/dummy/app/views/admin/manage/show.html.erb
213
+ - spec/dummy/app/views/home/contact.html.erb
214
+ - spec/dummy/app/views/home/index.html.erb
215
+ - spec/dummy/app/views/layouts/application.html.erb
216
+ - spec/dummy/app/views/layouts/mailer.html.erb
217
+ - spec/dummy/app/views/layouts/mailer.text.erb
218
+ - spec/dummy/bin/bundle
219
+ - spec/dummy/bin/rails
220
+ - spec/dummy/bin/rake
221
+ - spec/dummy/bin/setup
222
+ - spec/dummy/bin/update
223
+ - spec/dummy/config.ru
224
+ - spec/dummy/config/application.rb
225
+ - spec/dummy/config/boot.rb
226
+ - spec/dummy/config/cable.yml
227
+ - spec/dummy/config/database.yml
228
+ - spec/dummy/config/environment.rb
229
+ - spec/dummy/config/environments/development.rb
230
+ - spec/dummy/config/environments/production.rb
231
+ - spec/dummy/config/environments/test.rb
232
+ - spec/dummy/config/initializers/acu_rules.rb
233
+ - spec/dummy/config/initializers/acu_setup.rb
234
+ - spec/dummy/config/initializers/application_controller_renderer.rb
235
+ - spec/dummy/config/initializers/assets.rb
236
+ - spec/dummy/config/initializers/backtrace_silencers.rb
237
+ - spec/dummy/config/initializers/cookies_serializer.rb
238
+ - spec/dummy/config/initializers/devise.rb
239
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
240
+ - spec/dummy/config/initializers/inflections.rb
241
+ - spec/dummy/config/initializers/mime_types.rb
242
+ - spec/dummy/config/initializers/new_framework_defaults.rb
243
+ - spec/dummy/config/initializers/session_store.rb
244
+ - spec/dummy/config/initializers/wrap_parameters.rb
245
+ - spec/dummy/config/locales/devise.en.yml
246
+ - spec/dummy/config/locales/en.yml
247
+ - spec/dummy/config/puma.rb
248
+ - spec/dummy/config/routes.rb
249
+ - spec/dummy/config/secrets.yml
250
+ - spec/dummy/config/spring.rb
251
+ - spec/dummy/db/migrate/20170329111257_create_books.rb
252
+ - spec/dummy/db/migrate/20170329111323_create_comments.rb
253
+ - spec/dummy/db/migrate/20170329114943_devise_create_users.rb
254
+ - spec/dummy/db/migrate/20170329120950_create_admin_user_types.rb
255
+ - spec/dummy/db/migrate/20170329121612_add_user_type_id_to_users.rb
256
+ - spec/dummy/db/schema.rb
257
+ - spec/dummy/db/seeds.rb
258
+ - spec/dummy/public/404.html
259
+ - spec/dummy/public/422.html
260
+ - spec/dummy/public/500.html
261
+ - spec/dummy/public/apple-touch-icon-precomposed.png
262
+ - spec/dummy/public/apple-touch-icon.png
263
+ - spec/dummy/public/favicon.ico
264
+ - spec/dummy/spec/controllers/admin/manage_controller_spec.rb
265
+ - spec/dummy/spec/controllers/application_controller_spec.rb
266
+ - spec/dummy/spec/controllers/home_controller_spec.rb
267
+ - spec/rails_helper.rb
268
+ - spec/spec_helper.rb