Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c94895d
Merge pull request #110 from EngSwCIC/develop
icaronr Mar 30, 2021
7b672f5
fix gemfile and migrations
icaronr Mar 30, 2021
6f8579a
⬆️ Run bundle install and update Gemfile
rafael-g-depaulo Apr 17, 2021
f793c31
✅ Add sad path for "tentativa de inscrição numa
rafael-g-depaulo Apr 17, 2021
9180b38
Add editarDisciplina.feature
lucaslemos94 Apr 18, 2021
644a4b7
Merge pull request #1 from titofrota/feature/cucumber-scenarios
titofrota Apr 22, 2021
01cba53
Merge branch 'master' into develop
titofrota Apr 22, 2021
97ee895
Merge pull request #2 from titofrota/develop
titofrota Apr 22, 2021
93db0d9
adicionando branch.
lucaslemos94 May 5, 2021
d911d0f
adicionando branch.
lucaslemos94 May 5, 2021
a0158fd
meu deus funciona
titofrota May 5, 2021
e668ab8
FIX sad and happy path for editarDisciplina + minor fixes
titofrota May 6, 2021
e6a3a3d
ADD rendering filter for monitoria
titofrota May 6, 2021
5b50917
ADD more scenarios for editarDisciplina.feature
titofrota May 6, 2021
6ced79f
Merge branch 'feature/cucumber-scenarios' into lucas
titofrota May 6, 2021
26b6f35
Merge pull request #3 from titofrota/lucas
titofrota May 6, 2021
2bf7478
REFACTOR disciplinas_controller_spec
titofrota May 6, 2021
e956e96
✨ Add hepler method to disciplina Model.
rafael-g-depaulo May 7, 2021
9479334
ADD sprint_2.MD file.
lucaslemos94 May 7, 2021
ef1abc2
Merge branch 'develop' into feature/cucumber-scenarios
titofrota May 7, 2021
1f1ef93
Merge pull request #4 from titofrota/feature/cucumber-scenarios
titofrota May 7, 2021
21aa6e4
FIX disciplinas_controller_spec
titofrota May 7, 2021
722aabf
Merge pull request #5 from titofrota/feature/rspec
titofrota May 7, 2021
a5db31d
FIX rspec test for disciplinas
titofrota May 7, 2021
d0aa9b4
REMOVE sprint2.md
titofrota May 7, 2021
20af03c
Merge pull request #6 from titofrota/develop
titofrota May 8, 2021
5318e7d
adding Rdoc and Cycromatic.
lucaslemos94 May 20, 2021
f75c343
ADD readme sprint 3.
lucaslemos94 May 21, 2021
a48bd51
Merge pull request #7 from titofrota/feature/rspec
titofrota May 22, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,6 @@
# .idea/misc.xml
# *.ipr

# End of https://www.gitignore.io/api/ruby,rails,rubymine
# End of https://www.gitignore.io/api/ruby,rails,rubymine

/coverage/
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"git.ignoreLimitWarning": true,
"python.pythonPath": "C:\\Users\\Lucas\\AppData\\Local\\Programs\\Python\\Python39\\python.exe"
}
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ gem 'jbuilder', '~> 2.5'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'

gem 'webdrivers', '~> 4.0'

# Uses HAML templates
gem 'haml'
Expand All @@ -53,6 +52,9 @@ gem 'jquery-rails'
# Uses nokogiri gem
gem 'nokogiri'


gem 'cycromatic'

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
Expand Down Expand Up @@ -81,7 +83,7 @@ group :test do
gem 'launchy'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'webdrivers'
# gem 'webdrivers'

# Adds the RSpec stuff
gem 'rspec-rails' # RSpec
Expand Down
Loading