-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e82e8ab
Showing
54 changed files
with
1,563 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# This is a common gitignore which includes many files | ||
# That could be included by various Rails dependencies | ||
# This file is maintained by GitHub: https://github.com/github/gitignore | ||
|
||
*.rbc | ||
capybara-*.html | ||
.rspec | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
/db/*.sqlite3-[0-9]* | ||
/public/system | ||
/coverage/ | ||
/spec/tmp | ||
*.orig | ||
rerun.txt | ||
pickle-email-*.html | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo | ||
config/initializers/secret_token.rb | ||
config/master.key | ||
|
||
# Only include if you have production secrets in this file, which is no longer a Rails default | ||
# config/secrets.yml | ||
|
||
# dotenv, dotenv-rails | ||
# TODO Comment out these rules if environment variables can be committed | ||
.env | ||
.env*.local | ||
|
||
## Environment normalization: | ||
/.bundle | ||
/vendor/bundle | ||
|
||
# these should all be checked in to normalize the environment: | ||
# Gemfile.lock, .ruby-version, .ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc | ||
|
||
# if using bower-rails ignore default bower_components path bower.json files | ||
/vendor/assets/bower_components | ||
*.bowerrc | ||
bower.json | ||
|
||
# Ignore pow environment settings | ||
.powenv | ||
|
||
# Ignore Byebug command history file. | ||
.byebug_history | ||
|
||
# Ignore node_modules | ||
node_modules/ | ||
|
||
# Ignore precompiled javascript packs | ||
/public/packs | ||
/public/packs-test | ||
/public/assets | ||
|
||
# Ignore yarn files | ||
/yarn-error.log | ||
yarn-debug.log* | ||
.yarn-integrity | ||
|
||
# Ignore uploaded files in development | ||
/storage/* | ||
!/storage/.keep | ||
/public/uploads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
source 'https://rubygems.org' | ||
|
||
ruby '2.6.6' | ||
|
||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '4.2.11' | ||
|
||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug' | ||
end | ||
|
||
group :development do | ||
# Access an IRB console on exception pages or by using <%= console %> in views | ||
gem 'web-console', '~> 2.0' | ||
end | ||
|
||
group :test do | ||
gem 'cucumber-rails', require: false | ||
gem 'rspec-rails' | ||
gem 'webmock' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,213 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actionmailer (4.2.11) | ||
actionpack (= 4.2.11) | ||
actionview (= 4.2.11) | ||
activejob (= 4.2.11) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 1.0, >= 1.0.5) | ||
actionpack (4.2.11) | ||
actionview (= 4.2.11) | ||
activesupport (= 4.2.11) | ||
rack (~> 1.6) | ||
rack-test (~> 0.6.2) | ||
rails-dom-testing (~> 1.0, >= 1.0.5) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (4.2.11) | ||
activesupport (= 4.2.11) | ||
builder (~> 3.1) | ||
erubis (~> 2.7.0) | ||
rails-dom-testing (~> 1.0, >= 1.0.5) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.3) | ||
activejob (4.2.11) | ||
activesupport (= 4.2.11) | ||
globalid (>= 0.3.0) | ||
activemodel (4.2.11) | ||
activesupport (= 4.2.11) | ||
builder (~> 3.1) | ||
activerecord (4.2.11) | ||
activemodel (= 4.2.11) | ||
activesupport (= 4.2.11) | ||
arel (~> 6.0) | ||
activesupport (4.2.11) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
thread_safe (~> 0.3, >= 0.3.4) | ||
tzinfo (~> 1.1) | ||
addressable (2.7.0) | ||
public_suffix (>= 2.0.2, < 5.0) | ||
arel (6.0.4) | ||
binding_of_caller (1.0.0) | ||
debug_inspector (>= 0.0.1) | ||
builder (3.2.4) | ||
byebug (11.1.3) | ||
capybara (3.35.3) | ||
addressable | ||
mini_mime (>= 0.1.3) | ||
nokogiri (~> 1.8) | ||
rack (>= 1.6.0) | ||
rack-test (>= 0.6.3) | ||
regexp_parser (>= 1.5, < 3.0) | ||
xpath (~> 3.2) | ||
concurrent-ruby (1.1.8) | ||
crack (0.4.5) | ||
rexml | ||
crass (1.0.6) | ||
cucumber (4.1.0) | ||
builder (~> 3.2, >= 3.2.3) | ||
cucumber-core (~> 7.1, >= 7.1.0) | ||
cucumber-create-meta (~> 1.0.0, >= 1.0.0) | ||
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) | ||
cucumber-gherkin (~> 14.0, >= 14.0.1) | ||
cucumber-html-formatter (~> 7.0, >= 7.0.0) | ||
cucumber-messages (~> 12.2, >= 12.2.0) | ||
cucumber-wire (~> 3.1, >= 3.1.0) | ||
diff-lcs (~> 1.3, >= 1.3, < 1.4) | ||
multi_test (~> 0.1, >= 0.1.2) | ||
sys-uname (~> 1.0, >= 1.0.2) | ||
cucumber-core (7.1.0) | ||
cucumber-gherkin (~> 14.0, >= 14.0.1) | ||
cucumber-messages (~> 12.2, >= 12.2.0) | ||
cucumber-tag-expressions (~> 2.0, >= 2.0.4) | ||
cucumber-create-meta (1.0.0) | ||
cucumber-messages (~> 12.2, >= 12.2.0) | ||
sys-uname (~> 1.2, >= 1.2.1) | ||
cucumber-cucumber-expressions (10.3.0) | ||
cucumber-gherkin (14.2.0) | ||
cucumber-messages (~> 12.4, >= 12.4.0) | ||
cucumber-html-formatter (7.2.0) | ||
cucumber-messages (~> 12.4, >= 12.4.0) | ||
cucumber-messages (12.4.0) | ||
protobuf-cucumber (~> 3.10, >= 3.10.8) | ||
cucumber-rails (2.1.0) | ||
capybara (>= 2.12, < 4) | ||
cucumber (>= 3.0.2, < 5) | ||
mime-types (>= 2.0, < 4) | ||
nokogiri (~> 1.8) | ||
rails (>= 4.2, < 7) | ||
cucumber-tag-expressions (2.0.4) | ||
cucumber-wire (3.1.0) | ||
cucumber-core (~> 7.1, >= 7.1.0) | ||
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) | ||
cucumber-messages (~> 12.2, >= 12.2.0) | ||
debug_inspector (1.0.0) | ||
diff-lcs (1.3) | ||
erubis (2.7.0) | ||
ffi (1.14.2) | ||
globalid (0.4.2) | ||
activesupport (>= 4.2.0) | ||
hashdiff (1.0.1) | ||
i18n (0.9.5) | ||
concurrent-ruby (~> 1.0) | ||
loofah (2.9.0) | ||
crass (~> 1.0.2) | ||
nokogiri (>= 1.5.9) | ||
mail (2.7.1) | ||
mini_mime (>= 0.1.1) | ||
middleware (0.1.0) | ||
mime-types (3.3.1) | ||
mime-types-data (~> 3.2015) | ||
mime-types-data (3.2021.0212) | ||
mini_mime (1.0.2) | ||
mini_portile2 (2.5.0) | ||
minitest (5.14.3) | ||
multi_test (0.1.2) | ||
nokogiri (1.11.1) | ||
mini_portile2 (~> 2.5.0) | ||
racc (~> 1.4) | ||
protobuf-cucumber (3.10.8) | ||
activesupport (>= 3.2) | ||
middleware | ||
thor | ||
thread_safe | ||
public_suffix (4.0.6) | ||
racc (1.5.2) | ||
rack (1.6.13) | ||
rack-test (0.6.3) | ||
rack (>= 1.0) | ||
rails (4.2.11) | ||
actionmailer (= 4.2.11) | ||
actionpack (= 4.2.11) | ||
actionview (= 4.2.11) | ||
activejob (= 4.2.11) | ||
activemodel (= 4.2.11) | ||
activerecord (= 4.2.11) | ||
activesupport (= 4.2.11) | ||
bundler (>= 1.3.0, < 2.0) | ||
railties (= 4.2.11) | ||
sprockets-rails | ||
rails-deprecated_sanitizer (1.0.4) | ||
activesupport (>= 4.2.0.alpha) | ||
rails-dom-testing (1.0.9) | ||
activesupport (>= 4.2.0, < 5.0) | ||
nokogiri (~> 1.6) | ||
rails-deprecated_sanitizer (>= 1.0.1) | ||
rails-html-sanitizer (1.3.0) | ||
loofah (~> 2.3) | ||
railties (4.2.11) | ||
actionpack (= 4.2.11) | ||
activesupport (= 4.2.11) | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (13.0.3) | ||
regexp_parser (2.0.3) | ||
rexml (3.2.5) | ||
rspec-core (3.10.1) | ||
rspec-support (~> 3.10.0) | ||
rspec-expectations (3.10.1) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-mocks (3.10.2) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-rails (4.0.2) | ||
actionpack (>= 4.2) | ||
activesupport (>= 4.2) | ||
railties (>= 4.2) | ||
rspec-core (~> 3.10) | ||
rspec-expectations (~> 3.10) | ||
rspec-mocks (~> 3.10) | ||
rspec-support (~> 3.10) | ||
rspec-support (3.10.2) | ||
sprockets (4.0.2) | ||
concurrent-ruby (~> 1.0) | ||
rack (> 1, < 3) | ||
sprockets-rails (3.2.2) | ||
actionpack (>= 4.0) | ||
activesupport (>= 4.0) | ||
sprockets (>= 3.0.0) | ||
sys-uname (1.2.2) | ||
ffi (~> 1.1) | ||
thor (1.1.0) | ||
thread_safe (0.3.6) | ||
tzinfo (1.2.9) | ||
thread_safe (~> 0.1) | ||
web-console (2.3.0) | ||
activemodel (>= 4.0) | ||
binding_of_caller (>= 0.7.2) | ||
railties (>= 4.0) | ||
sprockets-rails (>= 2.0, < 4.0) | ||
webmock (3.11.2) | ||
addressable (>= 2.3.6) | ||
crack (>= 0.3.2) | ||
hashdiff (>= 0.4.0, < 2.0.0) | ||
xpath (3.2.0) | ||
nokogiri (~> 1.8) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
byebug | ||
cucumber-rails | ||
rails (= 4.2.11) | ||
rspec-rails | ||
web-console (~> 2.0) | ||
webmock | ||
|
||
RUBY VERSION | ||
ruby 2.6.6p146 | ||
|
||
BUNDLED WITH | ||
1.17.3 |
Oops, something went wrong.