Al Snow
061dd1beab
Upgraded websocket-extensions gem
2017-11-11 08:37:55 -05:00
Al Snow
b5d3344853
Upgraded public_suffix gem
2017-11-08 17:42:17 -05:00
Al Snow
ec5e64d0b8
Upgraded mini_mime gem
2017-11-08 15:02:24 -05:00
Al Snow
cb4d7f6a2c
Upgrade i18n gem
2017-11-03 09:35:55 -04:00
Al Snow
6c0c3ae813
Upgraded [bundler, mail, powder] gems
2017-11-01 09:30:12 -04:00
Al Snow
3487bbe726
Upgraded database_cleaner gem
2017-10-30 08:34:46 -04:00
Al Snow
4278fd5595
Upgraded to latest edge rails
2017-10-27 09:39:39 -04:00
Al Snow
d9a1dfb8fe
Upgraded tzinfo gem
2017-10-26 20:43:13 -04:00
Al Snow
6a4ecb27e0
Upgraded power_assert and rake gems
2017-10-25 07:53:29 -04:00
Al Snow
d47a0a4745
Upgraded globalid gem
2017-10-24 16:38:29 -04:00
Al Snow
66e9de21bc
Upgraded binding_of_caller gem
2017-10-21 21:13:18 -04:00
Al Snow
a6386d5563
Upgraded pry gem
2017-10-19 08:49:02 -04:00
Al Snow
7f64aaafb9
Upgraded rspec-rails gem; Removed un-needed puma gem
2017-10-18 09:03:47 -04:00
Al Snow
b3961670c6
Upgraded rspec gem; Added puma gem
2017-10-17 14:40:57 -04:00
Al Snow
47317f854a
Upgraded backports gem
2017-10-17 08:46:11 -04:00
Al Snow
e4e6ab38e0
Upgraded i18n gem
2017-10-16 09:35:45 -04:00
Al Snow
64511f505b
Upgraded better_errors gem
2017-10-13 16:45:13 -04:00
Al Snow
93f1a2403d
Merge branch 'master' of https://github.com/OWASP/railsgoat
2017-10-13 16:44:20 -04:00
Ken Johnson
058b4e08e7
Merge pull request #275 from jmmastey/remove-unused-test-suite
...
chore(tests): remove unused TestUnit suite, plus fixtures included in it
2017-10-11 11:40:36 -04:00
Al Snow
c8fc8a57b0
Merge branch 'master' of https://github.com/OWASP/railsgoat
2017-10-11 11:34:26 -04:00
Ken Johnson
b6d5fbbc3a
Merge pull request #276 from jmmastey/fix-password-reset-path
...
Awesome @jmmastey. I think we went with a match route, later changed it as match was *sorta-ish* deprecated in Rails 4+. Anyways, believe those changes might have caused some issues.
Either way, verified everything worked locally and performed PR. Thanks again!
2017-10-11 11:20:15 -04:00
Al Snow
d8eb813d83
Upgraded backports gem
2017-10-11 10:43:25 -04:00
Al Snow
033cf1b8cf
Upgraded erubi gem
2017-10-10 20:59:23 -04:00
Al Snow
36a812a87c
Upgraded [backports, cucumber-expressions, capybara] gems
2017-10-07 08:27:11 -04:00
Joseph Mastey
a6802aee5c
chore(tests): remove unused TestUnit suite, plus fixtures included in it
2017-10-06 19:58:12 -05:00
Joseph Mastey
97e8b82e0c
bug(password): fixes URL for password reset
2017-10-06 19:52:37 -05:00
Al Snow
9a3e2f3938
Upgraded sass and bundler gems
2017-10-05 08:40:26 -04:00
Al Snow
b8c6fc15f8
Merge branch 'master' of https://github.com/OWASP/railsgoat
2017-10-04 14:48:42 -04:00
Ken Johnson
5920596c73
Merge pull request #274 from mccabe615/master
...
Cleaning up seeds file
2017-10-04 14:27:43 -04:00
Mike McCabe
39e8f75e2d
fixing IDOR spec
2017-10-04 13:43:34 -04:00
Mike McCabe
e60fbb6399
cleaning up seeds file
2017-10-04 13:39:31 -04:00
Mike McCabe
7f010cf7a8
updating seeds adding new admin
2017-10-04 13:21:52 -04:00
Al Snow
86e7fedc53
Upgraded [capybara, unicorn] gems
2017-10-04 09:58:12 -04:00
cktricky
f93483029f
Merge branch 'jmmastey-add-test-case-for-a1-field-injection'
2017-10-02 19:07:15 -04:00
cktricky
f5cfec3bf4
Merge branch 'add-test-case-for-a1-field-injection' of https://github.com/jmmastey/railsgoat into jmmastey-add-test-case-for-a1-field-injection
2017-10-02 19:06:11 -04:00
Ken Johnson
e139019c4c
Merge pull request #271 from jmmastey/dont-reencrypt-password
...
fix user password field to not accidentally re-encrypt itself on save
2017-10-02 18:58:02 -04:00
Ken Johnson
b70e6e7b5e
Merge pull request #272 from jmmastey/idiomatic-use-of-layouts
...
change to idiomatic use of layouts versus regular views
2017-10-02 18:36:54 -04:00
Ken Johnson
8dc2d0c79f
Merge pull request #273 from jasnow/master
...
Upgraded 5 gems
2017-10-02 16:08:00 -04:00
Al Snow
1529c8c6e2
Merge branch 'master' of https://github.com/jasnow/railsgoat
2017-10-02 15:47:02 -04:00
Al Snow
68e475efd7
Upgraded cucumber gem
2017-10-02 15:46:38 -04:00
Al Snow
8fc08425f0
Upgraded cucumber gem
2017-09-29 11:23:19 -04:00
Joseph Mastey
d3fce41e60
change to idiomatic use of layouts versus regular views
...
no functional change here, but familiar Rails users will see view files in the
locations they expect. this also slightly simplifies controller code
there is one attendant change in the wiki at `rails_3/A1-SQL-Injection-Interpolation.md`
that I'm happy to make after the PR is merged.
2017-09-27 19:22:44 -05:00
Joseph Mastey
8b2f93516d
fix user password field to not accidentally re-encrypt itself on save
...
currently this is flagged manually in one place, but there's no reason not to
let the user model handle it. this way, you can update your user model from a
console or some other area without accidentally changing your password.
2017-09-27 18:57:40 -05:00
Al Snow
145fdcd03c
Upgraded to cucumber and backports gems
2017-09-27 19:22:58 -04:00
Al Snow
935dd6b3ea
Upgraded to latest edge rails + [method-source, pry, bundler] gems
2017-09-26 09:00:36 -04:00
Ken Johnson
b7db890f51
Merge pull request #269 from jasnow/master
...
Upgraded to Ruby 2.4.2 plus misc gems
2017-09-25 13:46:41 -04:00
Al Snow
20635993c8
Upgraded Ruby to 2.4.2, fixed OpenSSL warnings, and 3 gems
2017-09-25 12:58:06 -04:00
Al Snow
c242fb27e3
Upgraded test-unit gem
2017-09-21 07:45:21 -04:00
Al Snow
5627f5d783
Upgraded [pry, slop] gems
2017-09-20 13:51:21 -04:00
Al Snow
d653743746
Merge branch 'master' of https://github.com/OWASP/railsgoat
2017-09-20 13:49:17 -04:00