Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chapter2 #87

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ group :development do
end

group :test do
gem "rspec-rails"
gem "rspec-rails", '2.14.2'
gem "factory_girl_rails"
gem 'ffaker'
end
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ DEPENDENCIES
ffaker
jquery-rails
rails (= 4.0.2)
rspec-rails
rspec-rails (= 2.14.2)
sass-rails (~> 4.0.0)
sdoc
sqlite3
Expand Down
2 changes: 1 addition & 1 deletion config/routes.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'api_contraints'
require 'api_constraints'

MarketPlaceApi::Application.routes.draw do
# Api definition
Expand Down
1 change: 1 addition & 0 deletions lib/spec/api_constraints_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'spec_helper'
require 'api_constraints'

describe ApiConstraints do
let(:api_constraints_v1) { ApiConstraints.new(version: 1) }
Expand Down