Move gems into development group

This commit is contained in:
Jonathan Rudenberg 2012-09-06 22:19:57 -04:00
parent 7ee72b80db
commit 1f45cd899c
2 changed files with 17 additions and 14 deletions

29
Gemfile
View file

@ -1,21 +1,24 @@
source :rubygems
ruby '1.9.3'
gem 'nanoc'
gem 'nanoc-cachebuster'
gem 'redcarpet'
gem 'slim'
gem 'rainpress'
gem 'nokogiri'
gem 'adsf'
gem 'builder'
gem 'mime-types'
gem 'rack'
gem 'puma'
gem 'rack-rewrite'
gem 'pygments.rb', :git => 'git://github.com/akzhan/pygments.rb.git', :branch => 'rubypython-0.6'
gem 'clogger'
gem 'tent-schemas', :git => 'git://github.com/tent/tent-schemas.git', :branch => 'master'
gem 'tent-client', :git => 'git@github.com:tent/tent-client-ruby.git', :branch => 'master'
gem 'tentd', :git => 'git@github.com:tent/tentd.git', :branch => 'master'
gem 'tent-apidoc', :git => 'git@github.com:tent/tent-apidoc.git', :branch => 'master'
group :development do
gem 'nanoc'
gem 'nanoc-cachebuster'
gem 'redcarpet'
gem 'slim'
gem 'rainpress'
gem 'nokogiri'
gem 'adsf'
gem 'builder'
gem 'tent-schemas', :git => 'git://github.com/tent/tent-schemas.git', :branch => 'master'
gem 'tent-client', :git => 'git@github.com:tent/tent-client-ruby.git', :branch => 'master'
gem 'tentd', :git => 'git@github.com:tent/tentd.git', :branch => 'master'
gem 'tent-apidoc', :git => 'git@github.com:tent/tent-apidoc.git', :branch => 'master'
gem 'pygments.rb', :git => 'git://github.com/akzhan/pygments.rb.git', :branch => 'rubypython-0.6'
end