graph_starter 0.13.8 → 0.13.9

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 (51) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +6 -9
  3. data/app/models/concerns/graph_starter/authorizable.rb +2 -2
  4. data/lib/graph_starter/version.rb +1 -1
  5. data/spec/asset_authorization_spec.rb +46 -0
  6. data/{test → spec}/dummy/README.rdoc +0 -0
  7. data/{test → spec}/dummy/Rakefile +0 -0
  8. data/{test → spec}/dummy/app/assets/javascripts/application.js +0 -0
  9. data/{test → spec}/dummy/app/assets/stylesheets/application.css +0 -0
  10. data/{test → spec}/dummy/app/controllers/application_controller.rb +0 -0
  11. data/{test → spec}/dummy/app/helpers/application_helper.rb +0 -0
  12. data/spec/dummy/app/models/company.rb +5 -0
  13. data/spec/dummy/app/models/person.rb +8 -0
  14. data/spec/dummy/app/models/user.rb +6 -0
  15. data/{test → spec}/dummy/app/views/layouts/application.html.erb +0 -0
  16. data/{test → spec}/dummy/bin/bundle +0 -0
  17. data/{test → spec}/dummy/bin/rails +0 -0
  18. data/{test → spec}/dummy/bin/rake +0 -0
  19. data/{test → spec}/dummy/bin/setup +0 -0
  20. data/{test → spec}/dummy/config.ru +0 -0
  21. data/{test → spec}/dummy/config/application.rb +6 -2
  22. data/{test → spec}/dummy/config/boot.rb +0 -0
  23. data/{test → spec}/dummy/config/environment.rb +0 -0
  24. data/{test → spec}/dummy/config/environments/development.rb +0 -3
  25. data/{test → spec}/dummy/config/environments/production.rb +0 -3
  26. data/{test → spec}/dummy/config/environments/test.rb +0 -0
  27. data/{test → spec}/dummy/config/initializers/assets.rb +0 -0
  28. data/{test → spec}/dummy/config/initializers/backtrace_silencers.rb +0 -0
  29. data/{test → spec}/dummy/config/initializers/cookies_serializer.rb +0 -0
  30. data/{test → spec}/dummy/config/initializers/filter_parameter_logging.rb +0 -0
  31. data/spec/dummy/config/initializers/graph_starter.rb +3 -0
  32. data/{test → spec}/dummy/config/initializers/inflections.rb +0 -0
  33. data/{test → spec}/dummy/config/initializers/mime_types.rb +0 -0
  34. data/{test → spec}/dummy/config/initializers/session_store.rb +0 -0
  35. data/{test → spec}/dummy/config/initializers/wrap_parameters.rb +0 -0
  36. data/{test → spec}/dummy/config/locales/en.yml +0 -0
  37. data/spec/dummy/config/routes.rb +56 -0
  38. data/{test → spec}/dummy/config/secrets.yml +2 -2
  39. data/spec/dummy/log/test.log +246 -0
  40. data/{test → spec}/dummy/public/404.html +0 -0
  41. data/{test → spec}/dummy/public/422.html +0 -0
  42. data/{test → spec}/dummy/public/500.html +0 -0
  43. data/{test → spec}/dummy/public/favicon.ico +0 -0
  44. data/spec/rails_helper.rb +50 -0
  45. data/spec/spec_helper.rb +92 -0
  46. metadata +125 -75
  47. data/test/dummy/config/database.yml +0 -25
  48. data/test/dummy/config/routes.rb +0 -4
  49. data/test/graph_starter_test.rb +0 -7
  50. data/test/integration/navigation_test.rb +0 -10
  51. data/test/test_helper.rb +0 -20
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,50 @@
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.rb", __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
+ require 'factory_girl_rails'
9
+ # Add additional requires below this line. Rails is not loaded until this point!
10
+
11
+ # Requires supporting ruby files with custom matchers and macros, etc, in
12
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
13
+ # run as spec files by default. This means that files in spec/support that end
14
+ # in _spec.rb will both be required and run as specs, causing the specs to be
15
+ # run twice. It is recommended that you do not name files matching this glob to
16
+ # end with _spec.rb. You can configure this pattern with the --pattern
17
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
18
+ #
19
+ # The following line is provided for convenience purposes. It has the downside
20
+ # of increasing the boot-up time by auto-requiring all files in the support
21
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
22
+ # require only the support files necessary.
23
+ #
24
+ # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
25
+
26
+ module ClearDbHelpers
27
+ def clear_db
28
+ Neo4j::Session.current.query('MATCH n OPTIONAL MATCH n-[r]-() DELETE n, r')
29
+ end
30
+ end
31
+
32
+
33
+ RSpec.configure do |config|
34
+ # RSpec Rails can automatically mix in different behaviours to your tests
35
+ # based on their file location, for example enabling you to call `get` and
36
+ # `post` in specs under `spec/controllers`.
37
+ #
38
+ # You can disable this behaviour by removing the line below, and instead
39
+ # explicitly tag your specs with their type, e.g.:
40
+ #
41
+ # RSpec.describe UsersController, :type => :controller do
42
+ # # ...
43
+ # end
44
+ #
45
+ # The different available types are documented in the features, such as in
46
+ # https://relishapp.com/rspec/rspec-rails/docs
47
+ config.infer_spec_type_from_file_location!
48
+
49
+ config.include ClearDbHelpers
50
+ end
@@ -0,0 +1,92 @@
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
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
52
+
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graph_starter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.8
4
+ version: 0.13.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Underwood
@@ -94,6 +94,48 @@ dependencies:
94
94
  - - '='
95
95
  - !ruby/object:Gem::Version
96
96
  version: 0.0.3
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec-rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: capybara
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: factory_girl_rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
97
139
  description: A Rails engine to get a UI for a Neo4j up and running quickly
98
140
  email:
99
141
  - ml+github@semi-sentient.com
@@ -178,43 +220,47 @@ files:
178
220
  - lib/graph_starter/railtie.rb
179
221
  - lib/graph_starter/version.rb
180
222
  - lib/tasks/graph_starter_tasks.rake
181
- - test/dummy/README.rdoc
182
- - test/dummy/Rakefile
183
- - test/dummy/app/assets/javascripts/application.js
184
- - test/dummy/app/assets/stylesheets/application.css
185
- - test/dummy/app/controllers/application_controller.rb
186
- - test/dummy/app/helpers/application_helper.rb
187
- - test/dummy/app/views/layouts/application.html.erb
188
- - test/dummy/bin/bundle
189
- - test/dummy/bin/rails
190
- - test/dummy/bin/rake
191
- - test/dummy/bin/setup
192
- - test/dummy/config.ru
193
- - test/dummy/config/application.rb
194
- - test/dummy/config/boot.rb
195
- - test/dummy/config/database.yml
196
- - test/dummy/config/environment.rb
197
- - test/dummy/config/environments/development.rb
198
- - test/dummy/config/environments/production.rb
199
- - test/dummy/config/environments/test.rb
200
- - test/dummy/config/initializers/assets.rb
201
- - test/dummy/config/initializers/backtrace_silencers.rb
202
- - test/dummy/config/initializers/cookies_serializer.rb
203
- - test/dummy/config/initializers/filter_parameter_logging.rb
204
- - test/dummy/config/initializers/inflections.rb
205
- - test/dummy/config/initializers/mime_types.rb
206
- - test/dummy/config/initializers/session_store.rb
207
- - test/dummy/config/initializers/wrap_parameters.rb
208
- - test/dummy/config/locales/en.yml
209
- - test/dummy/config/routes.rb
210
- - test/dummy/config/secrets.yml
211
- - test/dummy/public/404.html
212
- - test/dummy/public/422.html
213
- - test/dummy/public/500.html
214
- - test/dummy/public/favicon.ico
215
- - test/graph_starter_test.rb
216
- - test/integration/navigation_test.rb
217
- - test/test_helper.rb
223
+ - spec/asset_authorization_spec.rb
224
+ - spec/dummy/README.rdoc
225
+ - spec/dummy/Rakefile
226
+ - spec/dummy/app/assets/javascripts/application.js
227
+ - spec/dummy/app/assets/stylesheets/application.css
228
+ - spec/dummy/app/controllers/application_controller.rb
229
+ - spec/dummy/app/helpers/application_helper.rb
230
+ - spec/dummy/app/models/company.rb
231
+ - spec/dummy/app/models/person.rb
232
+ - spec/dummy/app/models/user.rb
233
+ - spec/dummy/app/views/layouts/application.html.erb
234
+ - spec/dummy/bin/bundle
235
+ - spec/dummy/bin/rails
236
+ - spec/dummy/bin/rake
237
+ - spec/dummy/bin/setup
238
+ - spec/dummy/config.ru
239
+ - spec/dummy/config/application.rb
240
+ - spec/dummy/config/boot.rb
241
+ - spec/dummy/config/environment.rb
242
+ - spec/dummy/config/environments/development.rb
243
+ - spec/dummy/config/environments/production.rb
244
+ - spec/dummy/config/environments/test.rb
245
+ - spec/dummy/config/initializers/assets.rb
246
+ - spec/dummy/config/initializers/backtrace_silencers.rb
247
+ - spec/dummy/config/initializers/cookies_serializer.rb
248
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
249
+ - spec/dummy/config/initializers/graph_starter.rb
250
+ - spec/dummy/config/initializers/inflections.rb
251
+ - spec/dummy/config/initializers/mime_types.rb
252
+ - spec/dummy/config/initializers/session_store.rb
253
+ - spec/dummy/config/initializers/wrap_parameters.rb
254
+ - spec/dummy/config/locales/en.yml
255
+ - spec/dummy/config/routes.rb
256
+ - spec/dummy/config/secrets.yml
257
+ - spec/dummy/log/test.log
258
+ - spec/dummy/public/404.html
259
+ - spec/dummy/public/422.html
260
+ - spec/dummy/public/500.html
261
+ - spec/dummy/public/favicon.ico
262
+ - spec/rails_helper.rb
263
+ - spec/spec_helper.rb
218
264
  homepage: http://github.com/neo4j-examples/graph_starter
219
265
  licenses:
220
266
  - MIT
@@ -240,40 +286,44 @@ signing_key:
240
286
  specification_version: 4
241
287
  summary: A Rails engine to get a UI for a Neo4j up and running quickly
242
288
  test_files:
243
- - test/dummy/app/assets/javascripts/application.js
244
- - test/dummy/app/assets/stylesheets/application.css
245
- - test/dummy/app/controllers/application_controller.rb
246
- - test/dummy/app/helpers/application_helper.rb
247
- - test/dummy/app/views/layouts/application.html.erb
248
- - test/dummy/bin/bundle
249
- - test/dummy/bin/rails
250
- - test/dummy/bin/rake
251
- - test/dummy/bin/setup
252
- - test/dummy/config/application.rb
253
- - test/dummy/config/boot.rb
254
- - test/dummy/config/database.yml
255
- - test/dummy/config/environment.rb
256
- - test/dummy/config/environments/development.rb
257
- - test/dummy/config/environments/production.rb
258
- - test/dummy/config/environments/test.rb
259
- - test/dummy/config/initializers/assets.rb
260
- - test/dummy/config/initializers/backtrace_silencers.rb
261
- - test/dummy/config/initializers/cookies_serializer.rb
262
- - test/dummy/config/initializers/filter_parameter_logging.rb
263
- - test/dummy/config/initializers/inflections.rb
264
- - test/dummy/config/initializers/mime_types.rb
265
- - test/dummy/config/initializers/session_store.rb
266
- - test/dummy/config/initializers/wrap_parameters.rb
267
- - test/dummy/config/locales/en.yml
268
- - test/dummy/config/routes.rb
269
- - test/dummy/config/secrets.yml
270
- - test/dummy/config.ru
271
- - test/dummy/public/404.html
272
- - test/dummy/public/422.html
273
- - test/dummy/public/500.html
274
- - test/dummy/public/favicon.ico
275
- - test/dummy/Rakefile
276
- - test/dummy/README.rdoc
277
- - test/graph_starter_test.rb
278
- - test/integration/navigation_test.rb
279
- - test/test_helper.rb
289
+ - spec/asset_authorization_spec.rb
290
+ - spec/dummy/app/assets/javascripts/application.js
291
+ - spec/dummy/app/assets/stylesheets/application.css
292
+ - spec/dummy/app/controllers/application_controller.rb
293
+ - spec/dummy/app/helpers/application_helper.rb
294
+ - spec/dummy/app/models/company.rb
295
+ - spec/dummy/app/models/person.rb
296
+ - spec/dummy/app/models/user.rb
297
+ - spec/dummy/app/views/layouts/application.html.erb
298
+ - spec/dummy/bin/bundle
299
+ - spec/dummy/bin/rails
300
+ - spec/dummy/bin/rake
301
+ - spec/dummy/bin/setup
302
+ - spec/dummy/config/application.rb
303
+ - spec/dummy/config/boot.rb
304
+ - spec/dummy/config/environment.rb
305
+ - spec/dummy/config/environments/development.rb
306
+ - spec/dummy/config/environments/production.rb
307
+ - spec/dummy/config/environments/test.rb
308
+ - spec/dummy/config/initializers/assets.rb
309
+ - spec/dummy/config/initializers/backtrace_silencers.rb
310
+ - spec/dummy/config/initializers/cookies_serializer.rb
311
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
312
+ - spec/dummy/config/initializers/graph_starter.rb
313
+ - spec/dummy/config/initializers/inflections.rb
314
+ - spec/dummy/config/initializers/mime_types.rb
315
+ - spec/dummy/config/initializers/session_store.rb
316
+ - spec/dummy/config/initializers/wrap_parameters.rb
317
+ - spec/dummy/config/locales/en.yml
318
+ - spec/dummy/config/routes.rb
319
+ - spec/dummy/config/secrets.yml
320
+ - spec/dummy/config.ru
321
+ - spec/dummy/log/test.log
322
+ - spec/dummy/public/404.html
323
+ - spec/dummy/public/422.html
324
+ - spec/dummy/public/500.html
325
+ - spec/dummy/public/favicon.ico
326
+ - spec/dummy/Rakefile
327
+ - spec/dummy/README.rdoc
328
+ - spec/rails_helper.rb
329
+ - spec/spec_helper.rb
@@ -1,25 +0,0 @@
1
- # SQLite version 3.x
2
- # gem install sqlite3
3
- #
4
- # Ensure the SQLite 3 gem is defined in your Gemfile
5
- # gem 'sqlite3'
6
- #
7
- default: &default
8
- adapter: sqlite3
9
- pool: 5
10
- timeout: 5000
11
-
12
- development:
13
- <<: *default
14
- database: db/development.sqlite3
15
-
16
- # Warning: The database defined as "test" will be erased and
17
- # re-generated from your development database when you run "rake".
18
- # Do not set this db to the same as development or production.
19
- test:
20
- <<: *default
21
- database: db/test.sqlite3
22
-
23
- production:
24
- <<: *default
25
- database: db/production.sqlite3
@@ -1,4 +0,0 @@
1
- Rails.application.routes.draw do
2
-
3
- mount GraphStarter::Engine => "/graph_starter"
4
- end
@@ -1,7 +0,0 @@
1
- require 'test_helper'
2
-
3
- class GraphStarterTest < ActiveSupport::TestCase
4
- test "truth" do
5
- assert_kind_of Module, GraphStarter
6
- end
7
- end
@@ -1,10 +0,0 @@
1
- require 'test_helper'
2
-
3
- class NavigationTest < ActionDispatch::IntegrationTest
4
- fixtures :all
5
-
6
- # test "the truth" do
7
- # assert true
8
- # end
9
- end
10
-
data/test/test_helper.rb DELETED
@@ -1,20 +0,0 @@
1
- # Configure Rails Environment
2
- ENV["RAILS_ENV"] = "test"
3
-
4
- require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
- ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6
- ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
7
- require "rails/test_help"
8
-
9
- # Filter out Minitest backtrace while allowing backtrace from other libraries
10
- # to be shown.
11
- Minitest.backtrace_filter = Minitest::BacktraceFilter.new
12
-
13
- # Load support files
14
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
15
-
16
- # Load fixtures from the engine
17
- if ActiveSupport::TestCase.respond_to?(:fixture_path=)
18
- ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
19
- ActiveSupport::TestCase.fixtures :all
20
- end