OSDN Git Service

Merge branch 'v06' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / Gemfile
1 source 'https://rubygems.org'
2
3 gem 'rails', '~> 4.1.0'
4 gem 'devise'
5 gem 'omniauth'
6 gem 'omniauth-twitter'
7 gem 'omniauth-google-oauth2'
8 gem 'rest-client'
9 gem 'underscore-rails'
10 # gem 'backbone-rails'
11 gem 'rails-timeago'
12 gem 'kaminari'
13 gem 'sanitize'
14 #gem 'aws-s3'
15 gem 'aws-sdk', '< 2.0'
16 gem 'awesome_nested_set', '~> 3.0'
17 gem 'validates_existence'
18 gem "validate_url"
19 gem "pettanr_creative_commons_v30_licenses"
20 gem 'pettanr_pettan_commons_v01_licenses'
21 gem 'pettanr_pettan_protected_v01_licenses'
22 gem 'pettanr_pettan_public_v01_licenses'
23 gem 'pettanr_public_domain_v01_licenses'
24 gem 'pettanr_unknown_v01_licenses'
25 gem 'circle_speech_balloon'
26 gem 'plain_speech_balloon'
27 gem 'square_speech_balloon'
28 gem 'test_speech_balloon'
29 gem 'pettanr_simple_format'
30
31 # Bundle edge Rails instead:
32 # gem 'rails',     :git => 'git://github.com/rails/rails.git'
33 gem 'i18n-js'
34 gem 'nokogiri'
35
36 # Gems used only for assets and not required
37 # in production environments by default.
38 group :assets do
39   gem 'sass-rails',   '~> 4.0'
40   gem 'coffee-rails', '~> 4.0'
41   gem 'uglifier', '>= 1.3.0'
42   # http://qiita.com/scivola/items/ec7625118fcf6de5203a
43   gem 'coffee-script-source', '~> 1.8.0'
44 end
45
46 gem 'jquery-rails'
47 gem 'jquery-ui-rails',   '~> 5.0'
48 gem "jquery-validation-rails"
49
50 # To use ActiveModel has_secure_password
51 gem 'bcrypt-ruby', '~> 3.0.0'
52
53 # Use unicorn as the web server
54 # gem 'unicorn'
55
56 # Deploy with Capistrano
57 # gem 'capistrano'
58
59 # To use debugger
60 # gem 'ruby-debug19', :require => 'ruby-debug'
61
62 # gem 'therubyracer', :path => '../therubyracer-0.11.0beta1-x86-mingw32'
63
64 group :production do
65   #gem 'pg'
66   #gem 'therubyracer-heroku'
67 end
68
69 group :mgk do
70   gem 'rmagick'
71 end
72
73 group :development, :test do
74   gem 'sqlite3'
75   gem 'webrat'
76   gem 'moro-miso'
77   gem 'database_cleaner'
78   #gem 'rails-erd'
79 end
80
81 group :test do
82   gem 'autotest'
83   gem 'spork'
84   gem 'guard'
85   gem 'guard-spork'
86   gem 'guard-rspec'
87   gem 'webmock'
88   gem 'rspec'
89    gem 'rspec-rails'
90    gem 'cucumber'
91    gem 'cucumber-rails', require: false
92   gem 'factory_girl'
93 end
94
95 gem 'tzinfo-data'