Skip to content

Commit ebbca87

Browse files
committed
initial creation of the qa_server engine
0 parents  commit ebbca87

File tree

83 files changed

+1632
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+1632
-0
lines changed

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
rails.log
20+
solr.log
21+
fedora.log
22+
redis.log
23+
script/log
24+
25+
/node_modules
26+
/yarn-error.log
27+
28+
.byebug_history
29+
30+
# Ignore vendor/cache
31+
/vendor/cache
32+
/vendor/bundle
33+
34+
# ignore development scripts
35+
/devscript
36+
37+
# Ignore public documents, (compiled) assets, and sitemap
38+
/public/documents
39+
/public/assets
40+
/public/sitemap.xml.gz
41+
42+
# ignore renderer file
43+
# shows the template being rendered in the html source
44+
config/initializers/renderer.rb
45+
46+
# ignore jetty
47+
jetty
48+
49+
# ignore local coverage
50+
coverage
51+
52+
# ignore rubocop reports
53+
reports
54+
55+
# ignore persisting example file
56+
/spec/examples.txt
57+
.DS_Store
58+
59+
# from rails engine creation process
60+
.bundle/
61+
log/*.log
62+
pkg/
63+
test/dummy/db/*.sqlite3
64+
test/dummy/db/*.sqlite3-journal
65+
test/dummy/log/*.log
66+
test/dummy/node_modules/
67+
test/dummy/yarn-error.log
68+
test/dummy/storage/
69+
test/dummy/tmp/

Gemfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
# Declare your gem's dependencies in qa_server.gemspec.
5+
# Bundler will treat runtime dependencies like base dependencies, and
6+
# development dependencies will be added by default to the :development group.
7+
gemspec
8+
9+
# Declare any dependencies that are still in development here instead of in
10+
# your gemspec. These might include edge Rails or gems from your path or
11+
# Git. Remember to move these dependencies to your gemspec before releasing
12+
# your gem to rubygems.org.
13+
14+
# To use a debugger
15+
# gem 'byebug', group: [:development, :test]

Gemfile.lock

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
PATH
2+
remote: .
3+
specs:
4+
qa_server (0.1.0)
5+
rails (~> 5.2.1)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
actioncable (5.2.1)
11+
actionpack (= 5.2.1)
12+
nio4r (~> 2.0)
13+
websocket-driver (>= 0.6.1)
14+
actionmailer (5.2.1)
15+
actionpack (= 5.2.1)
16+
actionview (= 5.2.1)
17+
activejob (= 5.2.1)
18+
mail (~> 2.5, >= 2.5.4)
19+
rails-dom-testing (~> 2.0)
20+
actionpack (5.2.1)
21+
actionview (= 5.2.1)
22+
activesupport (= 5.2.1)
23+
rack (~> 2.0)
24+
rack-test (>= 0.6.3)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
27+
actionview (5.2.1)
28+
activesupport (= 5.2.1)
29+
builder (~> 3.1)
30+
erubi (~> 1.4)
31+
rails-dom-testing (~> 2.0)
32+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
33+
activejob (5.2.1)
34+
activesupport (= 5.2.1)
35+
globalid (>= 0.3.6)
36+
activemodel (5.2.1)
37+
activesupport (= 5.2.1)
38+
activerecord (5.2.1)
39+
activemodel (= 5.2.1)
40+
activesupport (= 5.2.1)
41+
arel (>= 9.0)
42+
activestorage (5.2.1)
43+
actionpack (= 5.2.1)
44+
activerecord (= 5.2.1)
45+
marcel (~> 0.3.1)
46+
activesupport (5.2.1)
47+
concurrent-ruby (~> 1.0, >= 1.0.2)
48+
i18n (>= 0.7, < 2)
49+
minitest (~> 5.1)
50+
tzinfo (~> 1.1)
51+
arel (9.0.0)
52+
builder (3.2.3)
53+
concurrent-ruby (1.0.5)
54+
crass (1.0.4)
55+
erubi (1.7.1)
56+
globalid (0.4.1)
57+
activesupport (>= 4.2.0)
58+
i18n (1.1.0)
59+
concurrent-ruby (~> 1.0)
60+
loofah (2.2.2)
61+
crass (~> 1.0.2)
62+
nokogiri (>= 1.5.9)
63+
mail (2.7.0)
64+
mini_mime (>= 0.1.1)
65+
marcel (0.3.2)
66+
mimemagic (~> 0.3.2)
67+
method_source (0.9.0)
68+
mimemagic (0.3.2)
69+
mini_mime (1.0.1)
70+
mini_portile2 (2.3.0)
71+
minitest (5.11.3)
72+
nio4r (2.3.1)
73+
nokogiri (1.8.4)
74+
mini_portile2 (~> 2.3.0)
75+
rack (2.0.5)
76+
rack-test (1.1.0)
77+
rack (>= 1.0, < 3)
78+
rails (5.2.1)
79+
actioncable (= 5.2.1)
80+
actionmailer (= 5.2.1)
81+
actionpack (= 5.2.1)
82+
actionview (= 5.2.1)
83+
activejob (= 5.2.1)
84+
activemodel (= 5.2.1)
85+
activerecord (= 5.2.1)
86+
activestorage (= 5.2.1)
87+
activesupport (= 5.2.1)
88+
bundler (>= 1.3.0)
89+
railties (= 5.2.1)
90+
sprockets-rails (>= 2.0.0)
91+
rails-dom-testing (2.0.3)
92+
activesupport (>= 4.2.0)
93+
nokogiri (>= 1.6)
94+
rails-html-sanitizer (1.0.4)
95+
loofah (~> 2.2, >= 2.2.2)
96+
railties (5.2.1)
97+
actionpack (= 5.2.1)
98+
activesupport (= 5.2.1)
99+
method_source
100+
rake (>= 0.8.7)
101+
thor (>= 0.19.0, < 2.0)
102+
rake (12.3.1)
103+
sprockets (3.7.2)
104+
concurrent-ruby (~> 1.0)
105+
rack (> 1, < 3)
106+
sprockets-rails (3.2.1)
107+
actionpack (>= 4.0)
108+
activesupport (>= 4.0)
109+
sprockets (>= 3.0.0)
110+
sqlite3 (1.3.13)
111+
thor (0.20.0)
112+
thread_safe (0.3.6)
113+
tzinfo (1.2.5)
114+
thread_safe (~> 0.1)
115+
websocket-driver (0.7.0)
116+
websocket-extensions (>= 0.1.0)
117+
websocket-extensions (0.1.3)
118+
119+
PLATFORMS
120+
ruby
121+
122+
DEPENDENCIES
123+
qa_server!
124+
sqlite3
125+
126+
BUNDLED WITH
127+
1.16.2

0 commit comments

Comments
 (0)