A simple twilio app in rails and angular

Gemfile 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. source 'https://rubygems.org'
  2. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  3. gem 'rails', '4.1.5'
  4. # Use sqlite3 as the database for Active Record
  5. gem 'pg'
  6. #use haml
  7. gem 'haml-rails'
  8. # Use SCSS for stylesheets
  9. gem 'sass-rails', '~> 4.0.3'
  10. # Use Uglifier as compressor for JavaScript assets
  11. gem 'uglifier', '>= 1.3.0'
  12. # Use CoffeeScript for .js.coffee assets and views
  13. gem 'coffee-rails', '~> 4.0.0'
  14. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  15. # gem 'therubyracer', platforms: :ruby
  16. # Use jquery as the JavaScript library
  17. gem 'jquery-rails'
  18. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  19. gem 'turbolinks'
  20. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  21. gem 'jbuilder', '~> 2.0'
  22. # bundle exec rake doc:rails generates the API under doc/api.
  23. gem 'sdoc', '~> 0.4.0', group: :doc
  24. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  25. gem 'spring', group: :development
  26. # Use ActiveModel has_secure_password
  27. gem 'bcrypt', '~> 3.1.7'
  28. # Use unicorn as the app server
  29. # gem 'unicorn'
  30. # Use Capistrano for deployment
  31. # gem 'capistrano-rails', group: :development
  32. # Use debugger
  33. # gem 'debugger', group: [:development, :test]
  34. # bootstrap
  35. gem 'therubyracer'
  36. gem 'less-rails'
  37. gem 'twitter-bootstrap-rails'
  38. # angular
  39. gem 'angular-rails-templates'
  40. #twilio
  41. gem 'twilio-ruby'
  42. group :development, :test do
  43. gem 'rspec-rails', '~> 3.0.0'
  44. gem 'webmock'
  45. gem 'nokogiri'
  46. end