Skip to content

Commit

Permalink
[api] comment the Gemfile a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
coolo committed Aug 28, 2013
1 parent 5eb81d9 commit 737c247
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
26 changes: 22 additions & 4 deletions src/api/Gemfile
Expand Up @@ -7,16 +7,29 @@ gem 'activerecord', '~> 4.0'
gem 'actionmailer'

gem 'mysql2'
gem 'daemons'

# activexml require
gem 'nokogiri', '~>1.6.0'
gem 'delayed_job', '>= 4.0.0'

# make sure we can delay tasks
gem 'delayed_job_active_record', '>= 4.0.0'
# to have the delayed job daemon
gem 'daemons'

# to fill errbit
gem 'hoptoad_notifier', "~> 2.3"

gem 'rdoc'
gem 'xmlhash', '>=1.3.5'
gem 'ruby-ldap', :require => false
gem 'dalli', :require => false
gem 'ruby-ldap', require: false

# memcache client
gem 'dalli', require: false

# JSON library - the default json conflicts with activerecord (by means of vice-versa monkey patching)
gem 'yajl-ruby'

# for searching in webui
gem 'thinking-sphinx'

# don't rely on cron+rake
Expand All @@ -33,10 +46,15 @@ group :test do
gem 'ci_reporter'
gem 'simplecov-rcov', :require => false
gem 'minitest', '< 5.0'
# colorize minitest output
gem 'minitest-colorize'
# generate random long strings
gem 'faker'
# freeze time
gem 'timecop'
# to fake backend replies
gem 'webmock', '>= 1.9.0'
# for code quality checks
gem 'flog', '> 4.1.0'
end

Expand Down
1 change: 0 additions & 1 deletion src/api/Gemfile.lock
Expand Up @@ -138,7 +138,6 @@ DEPENDENCIES
daemons
dalli
database_cleaner (>= 1.0.1)
delayed_job (>= 4.0.0)
delayed_job_active_record (>= 4.0.0)
faker
flog (> 4.1.0)
Expand Down

0 comments on commit 737c247

Please sign in to comment.