Sha256: 5603de4dd9142da0f5dbbd9fc55c57dbcc3d86474f3199d200047acfb3cec9ff
Contents?: true
Size: 1.95 KB
Versions: 1
Compression:
Stored size: 1.95 KB
Contents
# encoding: UTF-8 # Copyright 2011-2013 innoQ Deutschland GmbH # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. source 'http://rubygems.org' # TODO: The following dependencies could be included by the "gemspec" command. # There is only one problem: gemspec puts the dependencies automatically to a # group (:development by default). This is not what we need. gem 'rails', '3.2.13' group :assets do gem 'uglifier', '>= 1.0.3' gem 'sass-rails', '~> 3.2.5' gem 'therubyracer', :platforms => :ruby end gem 'kaminari' gem 'authlogic' gem 'cancan' gem 'iq_rdf' gem 'iq_triplestorage' gem 'json' gem 'rails_autolink' gem 'jruby-openssl', :platforms => :jruby gem 'simple_form' gem 'jbuilder' group :development do gem 'heroku' gem 'view_marker' gem 'better_errors' gem 'binding_of_caller', :platform => :ruby end group :development, :test do gem 'awesome_print' platforms :ruby do gem 'mysql2' gem 'sqlite3' gem 'zeus' gem 'pry' gem 'pry-rails' gem 'pry-debugger' gem 'pry-remote' gem 'hirb-unicode' gem 'cane' end platforms :jruby do gem 'activerecord-jdbcmysql-adapter' gem 'activerecord-jdbcsqlite3-adapter' end end group :test do gem 'nokogiri', '~> 1.5.0' gem 'capybara' gem 'capybara-screenshot' gem 'capybara-webkit', '~> 0.14.2' gem 'database_cleaner' gem 'factory_girl_rails' gem 'turn' gem 'minitest' gem 'webmock' end group :production do end group :heroku do gem 'pg', :platforms => :ruby end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
iqvoc-4.1.1 | Gemfile |