graph_starter 0.0.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 (99) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +38 -0
  5. data/app/assets/images/missing.png +0 -0
  6. data/app/assets/javascripts/graph_starter/application.coffee.erb +25 -0
  7. data/app/assets/javascripts/graph_starter/ember-template-compiler.js +22130 -0
  8. data/app/assets/javascripts/graph_starter/ember.js +52794 -0
  9. data/app/assets/javascripts/graph_starter/ember_apps/permissions_modal.coffee +146 -0
  10. data/app/assets/javascripts/graph_starter/ember_apps/user_list_dropdown.coffee +22 -0
  11. data/app/assets/javascripts/graph_starter/jquery-ui.min.js +7 -0
  12. data/app/assets/javascripts/graph_starter/underscore.js +1548 -0
  13. data/app/assets/stylesheets/graph_starter/application.scss +9 -0
  14. data/app/controllers/graph_starter/application_controller.rb +11 -0
  15. data/app/controllers/graph_starter/assets_controller.rb +76 -0
  16. data/app/controllers/graph_starter/authorizables_controller.rb +47 -0
  17. data/app/controllers/graph_starter/categories_controller.rb +79 -0
  18. data/app/controllers/graph_starter/groups_controller.rb +85 -0
  19. data/app/controllers/graph_starter/models_controller.rb +11 -0
  20. data/app/controllers/graph_starter/properties_controller.rb +11 -0
  21. data/app/helpers/graph_starter/application_helper.rb +11 -0
  22. data/app/models/concerns/graph_starter/authorizable.rb +30 -0
  23. data/app/models/graph_starter/asset.rb +161 -0
  24. data/app/models/graph_starter/can_access.rb +14 -0
  25. data/app/models/graph_starter/category.rb +24 -0
  26. data/app/models/graph_starter/group.rb +36 -0
  27. data/app/models/graph_starter/image.rb +16 -0
  28. data/app/models/graph_starter/model.rb +23 -0
  29. data/app/models/graph_starter/property.rb +19 -0
  30. data/app/models/graph_starter/view.rb +30 -0
  31. data/app/views/graph_starter/assets/TODO.md +7 -0
  32. data/app/views/graph_starter/assets/_cards.html.slim +34 -0
  33. data/app/views/graph_starter/assets/edit.html.slim +24 -0
  34. data/app/views/graph_starter/assets/home.html.slim +1 -0
  35. data/app/views/graph_starter/assets/index.html.slim +28 -0
  36. data/app/views/graph_starter/assets/show.html.slim +98 -0
  37. data/app/views/graph_starter/authorizables/show.json.jbuilder +20 -0
  38. data/app/views/graph_starter/authorizables/user_and_group_search.json.jbuilder +8 -0
  39. data/app/views/graph_starter/categories/show.html.slim +9 -0
  40. data/app/views/graph_starter/groups/_form.html.slim +30 -0
  41. data/app/views/graph_starter/groups/_list.html.slim +19 -0
  42. data/app/views/graph_starter/groups/edit.html.slim +8 -0
  43. data/app/views/graph_starter/groups/index.html.slim +18 -0
  44. data/app/views/graph_starter/groups/index.json.jbuilder +4 -0
  45. data/app/views/graph_starter/groups/new.html.slim +5 -0
  46. data/app/views/graph_starter/groups/show.html.slim +16 -0
  47. data/app/views/graph_starter/groups/show.json.jbuilder +1 -0
  48. data/app/views/graph_starter/models/index.html.slim +10 -0
  49. data/app/views/graph_starter/properties/_property.html.slim +34 -0
  50. data/app/views/layouts/graph_starter/_change_permissions_modal.html.slim +90 -0
  51. data/app/views/layouts/graph_starter/_custom_menu.html.slim +0 -0
  52. data/app/views/layouts/graph_starter/_menu.html.slim +7 -0
  53. data/app/views/layouts/graph_starter/_twitter_meta_tags.html.slim +17 -0
  54. data/app/views/layouts/graph_starter/application.html.slim +45 -0
  55. data/app/views/layouts/graph_starter/custom_menu.html.slim +0 -0
  56. data/config/routes.rb +24 -0
  57. data/lib/graph_starter.rb +4 -0
  58. data/lib/graph_starter/engine.rb +25 -0
  59. data/lib/graph_starter/query_authorizer.rb +81 -0
  60. data/lib/graph_starter/version.rb +3 -0
  61. data/lib/tasks/graph_starter_tasks.rake +4 -0
  62. data/test/dummy/README.rdoc +28 -0
  63. data/test/dummy/Rakefile +6 -0
  64. data/test/dummy/app/assets/javascripts/application.js +13 -0
  65. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  66. data/test/dummy/app/controllers/application_controller.rb +5 -0
  67. data/test/dummy/app/helpers/application_helper.rb +2 -0
  68. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  69. data/test/dummy/bin/bundle +3 -0
  70. data/test/dummy/bin/rails +4 -0
  71. data/test/dummy/bin/rake +4 -0
  72. data/test/dummy/bin/setup +29 -0
  73. data/test/dummy/config.ru +4 -0
  74. data/test/dummy/config/application.rb +26 -0
  75. data/test/dummy/config/boot.rb +5 -0
  76. data/test/dummy/config/database.yml +25 -0
  77. data/test/dummy/config/environment.rb +5 -0
  78. data/test/dummy/config/environments/development.rb +41 -0
  79. data/test/dummy/config/environments/production.rb +79 -0
  80. data/test/dummy/config/environments/test.rb +42 -0
  81. data/test/dummy/config/initializers/assets.rb +11 -0
  82. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  83. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  84. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  85. data/test/dummy/config/initializers/inflections.rb +16 -0
  86. data/test/dummy/config/initializers/mime_types.rb +4 -0
  87. data/test/dummy/config/initializers/session_store.rb +3 -0
  88. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  89. data/test/dummy/config/locales/en.yml +23 -0
  90. data/test/dummy/config/routes.rb +4 -0
  91. data/test/dummy/config/secrets.yml +22 -0
  92. data/test/dummy/public/404.html +67 -0
  93. data/test/dummy/public/422.html +67 -0
  94. data/test/dummy/public/500.html +66 -0
  95. data/test/dummy/public/favicon.ico +0 -0
  96. data/test/graph_starter_test.rb +7 -0
  97. data/test/integration/navigation_test.rb +10 -0
  98. data/test/test_helper.rb +20 -0
  99. metadata +262 -0
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount GraphStarter::Engine => "/graph_starter"
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: d77964902affb127be0c9f6c4de7a2bd9727cb922c07ed0e2d304b3f20c13f67c71c15c3ef4afca3dfba0f36dc082ecfa7c22b732fc15611b3650f256ee1d655
15
+
16
+ test:
17
+ secret_key_base: 15c0c6023ccf202c48219c73d11c0d25d4466278465a51a74a1dd9376647dca11e590e3249145067cd75f800ccbad16bcf9d9d019288b2fb2cda69dcc2fde910
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class GraphStarterTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, GraphStarter
6
+ end
7
+ end
@@ -0,0 +1,10 @@
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
+
@@ -0,0 +1,20 @@
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
metadata ADDED
@@ -0,0 +1,262 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: graph_starter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Brian Underwood
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-10-19 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: 4.2.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: neo4j
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 5.2.10
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 5.2.10
41
+ - !ruby/object:Gem::Dependency
42
+ name: semantic-ui-sass
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 2.1.3.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 2.1.3.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: slim-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 3.0.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 3.0.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: paperclip
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 4.2.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 4.2.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: neo4jrb-paperclip
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 0.0.3
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 0.0.3
97
+ description: A Rails engine to get a UI for a Neo4j up and running quickly
98
+ email:
99
+ - ml+github@semi-sentient.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - MIT-LICENSE
105
+ - README.rdoc
106
+ - Rakefile
107
+ - app/assets/images/missing.png
108
+ - app/assets/javascripts/graph_starter/application.coffee.erb
109
+ - app/assets/javascripts/graph_starter/ember-template-compiler.js
110
+ - app/assets/javascripts/graph_starter/ember.js
111
+ - app/assets/javascripts/graph_starter/ember_apps/permissions_modal.coffee
112
+ - app/assets/javascripts/graph_starter/ember_apps/user_list_dropdown.coffee
113
+ - app/assets/javascripts/graph_starter/jquery-ui.min.js
114
+ - app/assets/javascripts/graph_starter/underscore.js
115
+ - app/assets/stylesheets/graph_starter/application.scss
116
+ - app/controllers/graph_starter/application_controller.rb
117
+ - app/controllers/graph_starter/assets_controller.rb
118
+ - app/controllers/graph_starter/authorizables_controller.rb
119
+ - app/controllers/graph_starter/categories_controller.rb
120
+ - app/controllers/graph_starter/groups_controller.rb
121
+ - app/controllers/graph_starter/models_controller.rb
122
+ - app/controllers/graph_starter/properties_controller.rb
123
+ - app/helpers/graph_starter/application_helper.rb
124
+ - app/models/concerns/graph_starter/authorizable.rb
125
+ - app/models/graph_starter/asset.rb
126
+ - app/models/graph_starter/can_access.rb
127
+ - app/models/graph_starter/category.rb
128
+ - app/models/graph_starter/group.rb
129
+ - app/models/graph_starter/image.rb
130
+ - app/models/graph_starter/model.rb
131
+ - app/models/graph_starter/property.rb
132
+ - app/models/graph_starter/view.rb
133
+ - app/views/graph_starter/assets/TODO.md
134
+ - app/views/graph_starter/assets/_cards.html.slim
135
+ - app/views/graph_starter/assets/edit.html.slim
136
+ - app/views/graph_starter/assets/home.html.slim
137
+ - app/views/graph_starter/assets/index.html.slim
138
+ - app/views/graph_starter/assets/show.html.slim
139
+ - app/views/graph_starter/authorizables/show.json.jbuilder
140
+ - app/views/graph_starter/authorizables/user_and_group_search.json.jbuilder
141
+ - app/views/graph_starter/categories/show.html.slim
142
+ - app/views/graph_starter/groups/_form.html.slim
143
+ - app/views/graph_starter/groups/_list.html.slim
144
+ - app/views/graph_starter/groups/edit.html.slim
145
+ - app/views/graph_starter/groups/index.html.slim
146
+ - app/views/graph_starter/groups/index.json.jbuilder
147
+ - app/views/graph_starter/groups/new.html.slim
148
+ - app/views/graph_starter/groups/show.html.slim
149
+ - app/views/graph_starter/groups/show.json.jbuilder
150
+ - app/views/graph_starter/models/index.html.slim
151
+ - app/views/graph_starter/properties/_property.html.slim
152
+ - app/views/layouts/graph_starter/_change_permissions_modal.html.slim
153
+ - app/views/layouts/graph_starter/_custom_menu.html.slim
154
+ - app/views/layouts/graph_starter/_menu.html.slim
155
+ - app/views/layouts/graph_starter/_twitter_meta_tags.html.slim
156
+ - app/views/layouts/graph_starter/application.html.slim
157
+ - app/views/layouts/graph_starter/custom_menu.html.slim
158
+ - config/routes.rb
159
+ - lib/graph_starter.rb
160
+ - lib/graph_starter/engine.rb
161
+ - lib/graph_starter/query_authorizer.rb
162
+ - lib/graph_starter/version.rb
163
+ - lib/tasks/graph_starter_tasks.rake
164
+ - test/dummy/README.rdoc
165
+ - test/dummy/Rakefile
166
+ - test/dummy/app/assets/javascripts/application.js
167
+ - test/dummy/app/assets/stylesheets/application.css
168
+ - test/dummy/app/controllers/application_controller.rb
169
+ - test/dummy/app/helpers/application_helper.rb
170
+ - test/dummy/app/views/layouts/application.html.erb
171
+ - test/dummy/bin/bundle
172
+ - test/dummy/bin/rails
173
+ - test/dummy/bin/rake
174
+ - test/dummy/bin/setup
175
+ - test/dummy/config.ru
176
+ - test/dummy/config/application.rb
177
+ - test/dummy/config/boot.rb
178
+ - test/dummy/config/database.yml
179
+ - test/dummy/config/environment.rb
180
+ - test/dummy/config/environments/development.rb
181
+ - test/dummy/config/environments/production.rb
182
+ - test/dummy/config/environments/test.rb
183
+ - test/dummy/config/initializers/assets.rb
184
+ - test/dummy/config/initializers/backtrace_silencers.rb
185
+ - test/dummy/config/initializers/cookies_serializer.rb
186
+ - test/dummy/config/initializers/filter_parameter_logging.rb
187
+ - test/dummy/config/initializers/inflections.rb
188
+ - test/dummy/config/initializers/mime_types.rb
189
+ - test/dummy/config/initializers/session_store.rb
190
+ - test/dummy/config/initializers/wrap_parameters.rb
191
+ - test/dummy/config/locales/en.yml
192
+ - test/dummy/config/routes.rb
193
+ - test/dummy/config/secrets.yml
194
+ - test/dummy/public/404.html
195
+ - test/dummy/public/422.html
196
+ - test/dummy/public/500.html
197
+ - test/dummy/public/favicon.ico
198
+ - test/graph_starter_test.rb
199
+ - test/integration/navigation_test.rb
200
+ - test/test_helper.rb
201
+ homepage: http://github.com/neo4j-examples/graph_starter
202
+ licenses:
203
+ - MIT
204
+ metadata: {}
205
+ post_install_message:
206
+ rdoc_options: []
207
+ require_paths:
208
+ - lib
209
+ required_ruby_version: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - ">="
212
+ - !ruby/object:Gem::Version
213
+ version: '0'
214
+ required_rubygems_version: !ruby/object:Gem::Requirement
215
+ requirements:
216
+ - - ">="
217
+ - !ruby/object:Gem::Version
218
+ version: '0'
219
+ requirements: []
220
+ rubyforge_project:
221
+ rubygems_version: 2.4.5.1
222
+ signing_key:
223
+ specification_version: 4
224
+ summary: A Rails engine to get a UI for a Neo4j up and running quickly
225
+ test_files:
226
+ - test/dummy/app/assets/javascripts/application.js
227
+ - test/dummy/app/assets/stylesheets/application.css
228
+ - test/dummy/app/controllers/application_controller.rb
229
+ - test/dummy/app/helpers/application_helper.rb
230
+ - test/dummy/app/views/layouts/application.html.erb
231
+ - test/dummy/bin/bundle
232
+ - test/dummy/bin/rails
233
+ - test/dummy/bin/rake
234
+ - test/dummy/bin/setup
235
+ - test/dummy/config/application.rb
236
+ - test/dummy/config/boot.rb
237
+ - test/dummy/config/database.yml
238
+ - test/dummy/config/environment.rb
239
+ - test/dummy/config/environments/development.rb
240
+ - test/dummy/config/environments/production.rb
241
+ - test/dummy/config/environments/test.rb
242
+ - test/dummy/config/initializers/assets.rb
243
+ - test/dummy/config/initializers/backtrace_silencers.rb
244
+ - test/dummy/config/initializers/cookies_serializer.rb
245
+ - test/dummy/config/initializers/filter_parameter_logging.rb
246
+ - test/dummy/config/initializers/inflections.rb
247
+ - test/dummy/config/initializers/mime_types.rb
248
+ - test/dummy/config/initializers/session_store.rb
249
+ - test/dummy/config/initializers/wrap_parameters.rb
250
+ - test/dummy/config/locales/en.yml
251
+ - test/dummy/config/routes.rb
252
+ - test/dummy/config/secrets.yml
253
+ - test/dummy/config.ru
254
+ - test/dummy/public/404.html
255
+ - test/dummy/public/422.html
256
+ - test/dummy/public/500.html
257
+ - test/dummy/public/favicon.ico
258
+ - test/dummy/Rakefile
259
+ - test/dummy/README.rdoc
260
+ - test/graph_starter_test.rb
261
+ - test/integration/navigation_test.rb
262
+ - test/test_helper.rb