aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
blob: ca6b2b70531ea56e9610092f46dbf03419692a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
source 'http://rubygems.org'

gem 'rails', '3.2.6'    

platforms :jruby do
  gem 'activerecord-jdbcpostgresql-adapter', '1.2.9'
  gem 'activerecord-jdbcsqlite3-adapter'
  gem 'jruby-openssl'
  gem "jruby-rack-worker"
  gem 'warbler'   
  gem 'therubyrhino'      
end

platforms :ruby do
  gem 'therubyracer', '~> 0.10.2'          
  gem 'pg', '~> 0.11.0' 
  gem 'sqlite3'
end

# Authentication
gem 'devise', '2.1.3'
gem 'devise_invitable'

# Map, Geolocalization
gem "map_layers", "0.0.4"
gem "georuby-ext", "0.0.2"

# User interface
gem 'user_interface', "0.0.2"
gem 'gravatar_image_tag'
gem 'calendar_helper', "0.2.5"
gem 'cocoon', "1.1.2"
gem 'formtastic'
gem 'RedCloth'
gem 'jquery-rails', '2.2.1'
gem "modernizr-rails", "~> 2.0.6"

# Format Output
gem 'json'

# Controller
gem 'inherited_resources'

# Model
gem 'will_paginate', '~> 3.0'
gem 'ransack'
gem 'squeel'
gem 'ninoxe', '0.1.2'
gem 'acts_as_list', '0.1.6'
gem "acts_as_tree-1.8", '1.1.0', :require => "acts_as_tree"

gem 'delayed_job_active_record'
gem 'dr-apartment', :require => "apartment"

# some views use coffee script
gem 'coffee-rails', '~> 3.2.1'
gem 'coffee-script-source'
gem 'rabl'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'uglifier', '>= 1.0.3'
end

group :development do 
  gem 'capistrano'
  gem 'capistrano-ext'   
  gem 'guard'
  gem 'guard-rspec'
  gem 'rails-erd'       
end

group :test, :development do
  gem "rspec-rails", "~> 2.0"
  gem "remarkable", "~> 4.0.0.alpha4"           
  gem "remarkable_activerecord", "~> 4.0.0.alpha4" 
  gem "shoulda-matchers"
  gem 'capybara'     
  gem 'launchy'
  gem 'factory_girl_rails', '1.7'
  gem 'rb-inotify', :require => RUBY_PLATFORM.include?('linux') && 'rb-inotify'
  gem 'rb-fsevent', :require => RUBY_PLATFORM.include?('darwin') && 'rb-fsevent'
end

group :production do
   gem "SyslogLogger"
end