Skip to content

Commit

Permalink
Merge branch 'main' of github.com:excid3/beginnerbounties.com
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed Dec 12, 2023
2 parents 1704d71 + aee7b30 commit 1c7901e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 20 deletions.
3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.2.2"
ruby file: ".ruby-version"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.4", ">= 7.0.4.2"
Expand Down Expand Up @@ -72,7 +72,6 @@ group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end

gem "devise", "~> 4.9"
Expand Down
11 changes: 3 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ GEM
ruby-vips (2.1.4)
ffi (~> 1.12)
rubyzip (2.3.2)
selenium-webdriver (4.10.0)
selenium-webdriver (4.12.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
Expand Down Expand Up @@ -283,11 +283,7 @@ GEM
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webdrivers (5.3.1)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (~> 4.0, < 4.11)
websocket (1.2.9)
websocket (1.2.10)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
Expand Down Expand Up @@ -323,10 +319,9 @@ DEPENDENCIES
turbo-rails
tzinfo-data
web-console
webdrivers

RUBY VERSION
ruby 3.2.2p53

BUNDLED WITH
2.4.6
2.4.19
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,25 @@ Help new developers get their first paid work and build their resumes to help th

## Development

1. Follow [Github instructions](https://docs.github.com/en/get-started/quickstart/fork-a-repo#forking-a-repository) on how to Fork this repository.
1. Follow [Github instructions](https://docs.github.com/en/get-started/quickstart/fork-a-repo#forking-a-repository) on how to Fork this repository.

2. Make sure you have the correct version of Ruby installed (see `.ruby-version`). If not, install it if needed with the Ruby version manager that you use.

2. Make sure you have the correct version of Ruby installed (see `.ruby-version`). If not, install it if needed with the Ruby version manager that you use.
$ asdf install ruby 3.2.2
$ rbenv install 3.2.2
$ rvm install 3.2.2

$ asdf install ruby 3.2.1
$ rbenv install 3.2.1
$ rvm install 3.2.1

3. Install all dependencies with bundle
3. Install all dependencies with bundle

$ bundle install

4. Setup Database and run migrations
4. Setup Database and run migrations

$ rake db:create
$ rake db:migrate --trace

5. Start the web server with
5. Start the web server with

$ ./bin/dev


Run `bin/rails test:all` to run the tests. You can also run `rails c` for an interactive prompt that will allow you to experiment.

0 comments on commit 1c7901e

Please sign in to comment.