Updated a test for no direction with empty feeds as rss, changed some private keyword...
[feedcatcher.git] / Gemfile
1 source 'https://rubygems.org'
2
3 # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4 gem 'rails', '4.0.2'
5
6 # Use postgresql as the database for Active Record
7 gem 'pg'
8
9 # Use SCSS for stylesheets
10 gem 'sass-rails', '~> 4.0.0'
11
12 # Use Uglifier as compressor for JavaScript assets
13 gem 'uglifier', '>= 1.3.0'
14
15 # Use CoffeeScript for .js.coffee assets and views
16 gem 'coffee-rails', '~> 4.0.0'
17
18 # See https://github.com/sstephenson/execjs#readme for more supported runtimes
19 # gem 'therubyracer', platforms: :ruby
20
21 # Use jquery as the JavaScript library
22 gem 'jquery-rails'
23
24 # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
25 gem 'turbolinks'
26
27 # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
28 gem 'jbuilder', '~> 1.2'
29
30 group :doc do
31 # bundle exec rake doc:rails generates the API under doc/api.
32 gem 'sdoc', require: false
33 end
34
35 # Use ActiveModel has_secure_password
36 # gem 'bcrypt-ruby', '~> 3.1.2'
37
38 # Use unicorn as the app server
39 # gem 'unicorn'
40
41 # Use Capistrano for deployment
42 gem 'capistrano', group: :development
43
44 # Use debugger
45 # gem 'debugger', group: [:development, :test]
46
47 group :development, :test do
48 gem "rspec-rails"
49 gem "factory_girl_rails"
50 end