Skip to content

Commit fa7f6b6

Browse files
Alex Tharptoastercup
Alex Tharp
authored andcommitted
Merge pull request #554 from cbdr/topic/CE-306-Testing-Infrastructure
CE-306: Testing Infrastructure + Engine Rebuild
2 parents d040763 + 9d4266a commit fa7f6b6

File tree

491 files changed

+13600
-6689
lines changed

Some content is hidden

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

491 files changed

+13600
-6689
lines changed

.cloud66/deploy_hooks.yml

-51
This file was deleted.

.cloud66/manifest.yml

-104
This file was deleted.

.cloud66/scripts/clobber_assets.sh

-7
This file was deleted.

.cloud66/scripts/db_seed.sh

-4
This file was deleted.

.cloud66/scripts/rebuild_indexes.sh

-7
This file was deleted.

.cloud66/scripts/reseed_core_plugin.sh

-7
This file was deleted.

.cloud66/scripts/yarn_install.sh

-3
This file was deleted.

.gitignore

+36-21
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,15 @@
44
# or operating system, you probably want to add a global ignore instead:
55
# git config --global core.excludesfile '~/.gitignore_global'
66

7+
# Build Artifacts
8+
pkg/
9+
node_package/lib
10+
**.gem
11+
712
# Ignore bundler config.
813
/.bundle
914
/vendor/bundle
1015

11-
/public/assets/
12-
/public/uploads/
13-
14-
# Ignore the default SQLite database.
15-
/log/*
16-
/tmp/*
17-
!/log/.keep
18-
!/tmp/.keep
19-
20-
# Ignore all logfiles and tempfiles.
21-
/log/*.log
22-
/tmp
23-
2416
# Debug
2517
.byebug_history
2618

@@ -40,28 +32,51 @@
4032
.sass-cache
4133
capybara-*.html
4234
.powrc
43-
/public/system
4435
/coverage/
4536
/spec/tmp
4637
/spec/examples.txt
4738
**.orig
4839
rerun.txt
4940
pickle-email-*.html
50-
.env
51-
/.cloud66/stack.json
5241

53-
# these should all be checked in to normalise the environment:
54-
# Gemfile.lock, .ruby-version, .ruby-gemset
42+
# rspec failure tracking
43+
.rspec_status
5544

56-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
45+
# Environment
5746
.rvmrc
47+
.ruby-version
48+
.env
5849

5950
# Documentation Artifacts
6051
erd.pdf
6152

53+
#
54+
# Dummy Spec App
55+
#
56+
57+
spec/dummy/public/assets/
58+
spec/dummy/public/uploads/
59+
spec/dummy/public/system/
60+
61+
# Ignore the default SQLite database.
62+
spec/dummy/db/*.sqlite3
63+
spec/dummy/db/*.sqlite3-journal
64+
spec/dummy/log/*.log
65+
spec/dummy/node_modules/
66+
spec/dummy/yarn-error.log
67+
spec/dummy/storage/
68+
spec/dummy/tmp/
69+
70+
# Ignore all logfiles and tempfiles.
71+
/spec/dummy/log/*
72+
/spec/dummy/tmp/*
73+
!/spec/dummy/log/.keep
74+
!/spec/dummy/tmp/.keep
75+
6276
# Webpacker Pipeline
6377
npm-debug.log*
64-
/public/packs
65-
/public/packs-test
78+
/spec/dummy/public/packs
79+
/spec/dummy/public/packs-test
6680
node_modules
6781
/yarn-error.log
82+
/spec/dummy/yarn-error.log

.npmignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.gitignore
2+
.npmignore
3+
.editorconfig
4+
.github
5+
CHANGELOG.md
6+
Gemfile
7+
README.md
8+
app
9+
coverage
10+
docs
11+
examples
12+
node_modules
13+
*.gemspec
14+
*.gem
15+
Dockerfile_tests
16+
Gemfile
17+
Gemfile.lock
18+
Rakefile
19+
yarn.lock
20+
bin
21+
docker-compose.yml
22+
etc
23+
lib
24+
config
25+
bin
26+
db
27+
app
28+
rakelib
29+
ruby-lint.yml
30+
test
31+
spec
32+
node_modules
33+
tmp
34+
gen-examples

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
--format documentation
12
--color
23
--require spec_helper

.ruby-version

-1
This file was deleted.

Brewfile

-8
This file was deleted.

0 commit comments

Comments
 (0)