- Clone the repo:
clone [email protected]:strs_taxi/strs-taxi.git
for SSHgit clone https://[email protected]/strs_taxi/strs-taxi.git
for HTTPS
- Ruby version 2.2.1 and above
- Rails 5.0.0
- CodeShip
Once you have those two, you can then run your command line and navigate into the project's folder and then run:
-
Run
bundle install
to install all other dependenciesNote some gems might cause issues while installing, so for unix/linux users try
sudo gem install <gem_name>
-
Run
rails db:migrate
orrake db:migrate
-
Run
rails db:seed
orrake db:seed
to seed thedb
if neccessary.
(the rake
command was used for rails version prior rails 5. But it is no logner required)
You can run rails s
or rails server
and visit the page on the browser by typing localhost:3000
. (you can add the flag -p <port_number>
to specify a different port number, e.i. rails s -p 8000
)
##Running The Specs After all the setting up as mentioned above, you can run the tests. The tests are driven by rspec. You can get them fired up by running the following command from the terminal.
rspec spec
or
bundle exec rspec
Currently at 90% with simplecov. To generate coverage report:
- Add
gem 'simplecov', require: false
totest
group in Gemfile andbundle install
. - Add the line
require 'simplecov' SimpleCov.start
to the top ofspec_helper.rb
- Add the line
if ENV['RAILS_ENV'] == 'test' require 'simplecov' SimpleCov.start 'rails' puts "required simplecov" end
to the top of thebin/rails
file - Run
rspec spec
and visit thecoverage/index.html
to view the coverage report.
- Authentication (Token Based Authentication)
- Registration
- Taxi request & response
- Payment Management
- Admin Interface
Prefix Verb URI Pattern Controller#Action
root GET / main#index
api_users GET /api/users(.:format) api/users#index
POST /api/users(.:format) api/users#create
api_user GET /api/users/:id(.:format) api/users#show
PATCH /api/users/:id(.:format) api/users#update
PUT /api/users/:id(.:format) api/users#update
DELETE /api/users/:id(.:format) api/users#destroy
api_locations GET /api/locations(.:format) api/locations#index
POST /api/locations(.:format) api/locations#create
api_location GET /api/locations/:id(.:format) api/locations#show
PATCH /api/locations/:id(.:format) api/locations#update
PUT /api/locations/:id(.:format) api/locations#update
DELETE /api/locations/:id(.:format) api/locations#destroy
api_users_login POST /api/users/login(.:format) api/users#login
POST /api/bookings(.:format) api/bookings#create
api_booking GET /api/bookings/:id(.:format) api/bookings#show
PATCH /api/bookings/:id(.:format) api/bookings#update
PUT /api/bookings/:id(.:format) api/bookings#update
DELETE /api/bookings/:id(.:format) api/bookings#destroy
api_users_logout GET /api/users/logout(.:format) api/users#logout
api_users_status POST /api/users/status(.:format) api/users#status
api_bookings_accept POST /api/bookings/accept(.:format) api/bookings#accept
api_bookings_start_ride POST /api/bookings/start_ride(.:format) api/bookings#start_ride
api_bookings_end_ride POST /api/bookings/end_ride(.:format) api/bookings#end_ride
- Development Environment Uses Sqlite
- Production && Staging environment Uses Postgres