Skip to content

Commit 64519dc

Browse files
jairovelasquezactions-user
authored andcommitted
automated commit
0 parents  commit 64519dc

Some content is hidden

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

54 files changed

+1563
-0
lines changed

.gitignore

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# This is a common gitignore which includes many files
2+
# That could be included by various Rails dependencies
3+
# This file is maintained by GitHub: https://github.com/github/gitignore
4+
5+
*.rbc
6+
capybara-*.html
7+
.rspec
8+
/db/*.sqlite3
9+
/db/*.sqlite3-journal
10+
/db/*.sqlite3-[0-9]*
11+
/public/system
12+
/coverage/
13+
/spec/tmp
14+
*.orig
15+
rerun.txt
16+
pickle-email-*.html
17+
18+
# Ignore all logfiles and tempfiles.
19+
/log/*
20+
/tmp/*
21+
!/log/.keep
22+
!/tmp/.keep
23+
24+
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
25+
config/initializers/secret_token.rb
26+
config/master.key
27+
28+
# Only include if you have production secrets in this file, which is no longer a Rails default
29+
# config/secrets.yml
30+
31+
# dotenv, dotenv-rails
32+
# TODO Comment out these rules if environment variables can be committed
33+
.env
34+
.env*.local
35+
36+
## Environment normalization:
37+
/.bundle
38+
/vendor/bundle
39+
40+
# these should all be checked in to normalize the environment:
41+
# Gemfile.lock, .ruby-version, .ruby-gemset
42+
43+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
44+
.rvmrc
45+
46+
# if using bower-rails ignore default bower_components path bower.json files
47+
/vendor/assets/bower_components
48+
*.bowerrc
49+
bower.json
50+
51+
# Ignore pow environment settings
52+
.powenv
53+
54+
# Ignore Byebug command history file.
55+
.byebug_history
56+
57+
# Ignore node_modules
58+
node_modules/
59+
60+
# Ignore precompiled javascript packs
61+
/public/packs
62+
/public/packs-test
63+
/public/assets
64+
65+
# Ignore yarn files
66+
/yarn-error.log
67+
yarn-debug.log*
68+
.yarn-integrity
69+
70+
# Ignore uploaded files in development
71+
/storage/*
72+
!/storage/.keep
73+
/public/uploads

Gemfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
source 'https://rubygems.org'
2+
3+
ruby '2.6.6'
4+
5+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
6+
gem 'rails', '4.2.11'
7+
8+
group :development, :test do
9+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
10+
gem 'byebug'
11+
end
12+
13+
group :development do
14+
# Access an IRB console on exception pages or by using <%= console %> in views
15+
gem 'web-console', '~> 2.0'
16+
end
17+
18+
group :test do
19+
gem 'cucumber-rails', require: false
20+
gem 'rspec-rails'
21+
gem 'webmock'
22+
end

Gemfile.lock

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.2.11)
5+
actionpack (= 4.2.11)
6+
actionview (= 4.2.11)
7+
activejob (= 4.2.11)
8+
mail (~> 2.5, >= 2.5.4)
9+
rails-dom-testing (~> 1.0, >= 1.0.5)
10+
actionpack (4.2.11)
11+
actionview (= 4.2.11)
12+
activesupport (= 4.2.11)
13+
rack (~> 1.6)
14+
rack-test (~> 0.6.2)
15+
rails-dom-testing (~> 1.0, >= 1.0.5)
16+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
17+
actionview (4.2.11)
18+
activesupport (= 4.2.11)
19+
builder (~> 3.1)
20+
erubis (~> 2.7.0)
21+
rails-dom-testing (~> 1.0, >= 1.0.5)
22+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
23+
activejob (4.2.11)
24+
activesupport (= 4.2.11)
25+
globalid (>= 0.3.0)
26+
activemodel (4.2.11)
27+
activesupport (= 4.2.11)
28+
builder (~> 3.1)
29+
activerecord (4.2.11)
30+
activemodel (= 4.2.11)
31+
activesupport (= 4.2.11)
32+
arel (~> 6.0)
33+
activesupport (4.2.11)
34+
i18n (~> 0.7)
35+
minitest (~> 5.1)
36+
thread_safe (~> 0.3, >= 0.3.4)
37+
tzinfo (~> 1.1)
38+
addressable (2.7.0)
39+
public_suffix (>= 2.0.2, < 5.0)
40+
arel (6.0.4)
41+
binding_of_caller (1.0.0)
42+
debug_inspector (>= 0.0.1)
43+
builder (3.2.4)
44+
byebug (11.1.3)
45+
capybara (3.35.3)
46+
addressable
47+
mini_mime (>= 0.1.3)
48+
nokogiri (~> 1.8)
49+
rack (>= 1.6.0)
50+
rack-test (>= 0.6.3)
51+
regexp_parser (>= 1.5, < 3.0)
52+
xpath (~> 3.2)
53+
concurrent-ruby (1.1.8)
54+
crack (0.4.5)
55+
rexml
56+
crass (1.0.6)
57+
cucumber (4.1.0)
58+
builder (~> 3.2, >= 3.2.3)
59+
cucumber-core (~> 7.1, >= 7.1.0)
60+
cucumber-create-meta (~> 1.0.0, >= 1.0.0)
61+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
62+
cucumber-gherkin (~> 14.0, >= 14.0.1)
63+
cucumber-html-formatter (~> 7.0, >= 7.0.0)
64+
cucumber-messages (~> 12.2, >= 12.2.0)
65+
cucumber-wire (~> 3.1, >= 3.1.0)
66+
diff-lcs (~> 1.3, >= 1.3, < 1.4)
67+
multi_test (~> 0.1, >= 0.1.2)
68+
sys-uname (~> 1.0, >= 1.0.2)
69+
cucumber-core (7.1.0)
70+
cucumber-gherkin (~> 14.0, >= 14.0.1)
71+
cucumber-messages (~> 12.2, >= 12.2.0)
72+
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
73+
cucumber-create-meta (1.0.0)
74+
cucumber-messages (~> 12.2, >= 12.2.0)
75+
sys-uname (~> 1.2, >= 1.2.1)
76+
cucumber-cucumber-expressions (10.3.0)
77+
cucumber-gherkin (14.2.0)
78+
cucumber-messages (~> 12.4, >= 12.4.0)
79+
cucumber-html-formatter (7.2.0)
80+
cucumber-messages (~> 12.4, >= 12.4.0)
81+
cucumber-messages (12.4.0)
82+
protobuf-cucumber (~> 3.10, >= 3.10.8)
83+
cucumber-rails (2.1.0)
84+
capybara (>= 2.12, < 4)
85+
cucumber (>= 3.0.2, < 5)
86+
mime-types (>= 2.0, < 4)
87+
nokogiri (~> 1.8)
88+
rails (>= 4.2, < 7)
89+
cucumber-tag-expressions (2.0.4)
90+
cucumber-wire (3.1.0)
91+
cucumber-core (~> 7.1, >= 7.1.0)
92+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
93+
cucumber-messages (~> 12.2, >= 12.2.0)
94+
debug_inspector (1.0.0)
95+
diff-lcs (1.3)
96+
erubis (2.7.0)
97+
ffi (1.14.2)
98+
globalid (0.4.2)
99+
activesupport (>= 4.2.0)
100+
hashdiff (1.0.1)
101+
i18n (0.9.5)
102+
concurrent-ruby (~> 1.0)
103+
loofah (2.9.0)
104+
crass (~> 1.0.2)
105+
nokogiri (>= 1.5.9)
106+
mail (2.7.1)
107+
mini_mime (>= 0.1.1)
108+
middleware (0.1.0)
109+
mime-types (3.3.1)
110+
mime-types-data (~> 3.2015)
111+
mime-types-data (3.2021.0212)
112+
mini_mime (1.0.2)
113+
mini_portile2 (2.5.0)
114+
minitest (5.14.3)
115+
multi_test (0.1.2)
116+
nokogiri (1.11.1)
117+
mini_portile2 (~> 2.5.0)
118+
racc (~> 1.4)
119+
protobuf-cucumber (3.10.8)
120+
activesupport (>= 3.2)
121+
middleware
122+
thor
123+
thread_safe
124+
public_suffix (4.0.6)
125+
racc (1.5.2)
126+
rack (1.6.13)
127+
rack-test (0.6.3)
128+
rack (>= 1.0)
129+
rails (4.2.11)
130+
actionmailer (= 4.2.11)
131+
actionpack (= 4.2.11)
132+
actionview (= 4.2.11)
133+
activejob (= 4.2.11)
134+
activemodel (= 4.2.11)
135+
activerecord (= 4.2.11)
136+
activesupport (= 4.2.11)
137+
bundler (>= 1.3.0, < 2.0)
138+
railties (= 4.2.11)
139+
sprockets-rails
140+
rails-deprecated_sanitizer (1.0.4)
141+
activesupport (>= 4.2.0.alpha)
142+
rails-dom-testing (1.0.9)
143+
activesupport (>= 4.2.0, < 5.0)
144+
nokogiri (~> 1.6)
145+
rails-deprecated_sanitizer (>= 1.0.1)
146+
rails-html-sanitizer (1.3.0)
147+
loofah (~> 2.3)
148+
railties (4.2.11)
149+
actionpack (= 4.2.11)
150+
activesupport (= 4.2.11)
151+
rake (>= 0.8.7)
152+
thor (>= 0.18.1, < 2.0)
153+
rake (13.0.3)
154+
regexp_parser (2.0.3)
155+
rexml (3.2.5)
156+
rspec-core (3.10.1)
157+
rspec-support (~> 3.10.0)
158+
rspec-expectations (3.10.1)
159+
diff-lcs (>= 1.2.0, < 2.0)
160+
rspec-support (~> 3.10.0)
161+
rspec-mocks (3.10.2)
162+
diff-lcs (>= 1.2.0, < 2.0)
163+
rspec-support (~> 3.10.0)
164+
rspec-rails (4.0.2)
165+
actionpack (>= 4.2)
166+
activesupport (>= 4.2)
167+
railties (>= 4.2)
168+
rspec-core (~> 3.10)
169+
rspec-expectations (~> 3.10)
170+
rspec-mocks (~> 3.10)
171+
rspec-support (~> 3.10)
172+
rspec-support (3.10.2)
173+
sprockets (4.0.2)
174+
concurrent-ruby (~> 1.0)
175+
rack (> 1, < 3)
176+
sprockets-rails (3.2.2)
177+
actionpack (>= 4.0)
178+
activesupport (>= 4.0)
179+
sprockets (>= 3.0.0)
180+
sys-uname (1.2.2)
181+
ffi (~> 1.1)
182+
thor (1.1.0)
183+
thread_safe (0.3.6)
184+
tzinfo (1.2.9)
185+
thread_safe (~> 0.1)
186+
web-console (2.3.0)
187+
activemodel (>= 4.0)
188+
binding_of_caller (>= 0.7.2)
189+
railties (>= 4.0)
190+
sprockets-rails (>= 2.0, < 4.0)
191+
webmock (3.11.2)
192+
addressable (>= 2.3.6)
193+
crack (>= 0.3.2)
194+
hashdiff (>= 0.4.0, < 2.0.0)
195+
xpath (3.2.0)
196+
nokogiri (~> 1.8)
197+
198+
PLATFORMS
199+
ruby
200+
201+
DEPENDENCIES
202+
byebug
203+
cucumber-rails
204+
rails (= 4.2.11)
205+
rspec-rails
206+
web-console (~> 2.0)
207+
webmock
208+
209+
RUBY VERSION
210+
ruby 2.6.6p146
211+
212+
BUNDLED WITH
213+
1.17.3

0 commit comments

Comments
 (0)