forked from twilio/authy-devise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'ValiMail/feature/rails_4_devise_3'
- Loading branch information
Showing
30 changed files
with
641 additions
and
755 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,40 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gem "devise", '< 3.0.0' | ||
gem 'devise', '>= 3.0.0' | ||
gem 'authy' | ||
|
||
group :development do | ||
gem "rspec", "> 2.14.1", "< 3.0" | ||
gem "yard" | ||
gem "rdoc" | ||
gem "bundler" | ||
gem "jeweler", ">= 2.0.1" | ||
gem "simplecov" | ||
gem "sass-rails" | ||
gem "jquery-rails" | ||
gem "pry" | ||
gem 'rspec', '> 3.0.0' | ||
gem 'yard' | ||
gem 'rdoc' | ||
gem 'bundler' | ||
gem 'jeweler', '>= 2.0.1' | ||
gem 'simplecov' | ||
gem 'byebug' | ||
end | ||
|
||
group :test do | ||
gem "rails", "~> 3.2.6" | ||
gem "sqlite3" | ||
gem 'rails', '~> 4.2.5' | ||
gem 'sqlite3' | ||
|
||
# Use SCSS for stylesheets | ||
gem 'sass-rails', '~> 5.0' | ||
|
||
# Use Uglifier as compressor for JavaScript assets | ||
gem 'uglifier', '>= 1.3.0' | ||
|
||
# Use CoffeeScript for .coffee assets and views | ||
gem 'coffee-rails', '~> 4.1.0' | ||
|
||
# Use jquery as the JavaScript library | ||
gem 'jquery-rails' | ||
|
||
gem 'launchy' | ||
gem 'rspec-rails' | ||
gem 'database_cleaner' | ||
gem 'capybara' | ||
gem 'test-unit' | ||
end | ||
|
||
# bundle exec rake doc:rails generates the API under doc/api. | ||
gem 'sdoc', '~> 0.4.0', group: :doc |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.