0edd29dfd4
Conflicts: Gemfile README_DEVEL app/controllers/articles_controller.rb app/controllers/orders_controller.rb app/controllers/tasks_controller.rb app/models/task.rb app/views/articles/_import_search_results.haml app/views/articles/index.haml app/views/messages/new.haml app/views/ordering/_order_head.haml app/views/ordering/my_order_result.haml app/views/orders/show.haml app/views/stockit/new.html.haml db/schema.rb
47 lines
1.2 KiB
Ruby
47 lines
1.2 KiB
Ruby
# A sample Gemfile
|
|
source "https://rubygems.org"
|
|
ruby "1.9.3"
|
|
|
|
gem "rails", '3.2.9'
|
|
|
|
# Gems used only for assets and not required
|
|
# in production environments by default.
|
|
group :assets do
|
|
gem 'sass-rails', '~> 3.2.3'
|
|
gem 'coffee-rails', '~> 3.2.1'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
gem 'therubyracer', :platforms => :ruby
|
|
|
|
gem 'uglifier', '>= 1.0.3'
|
|
end
|
|
|
|
gem 'jquery-rails'
|
|
|
|
gem 'mysql2'
|
|
gem 'prawn'
|
|
gem 'haml-rails'
|
|
gem 'kaminari'
|
|
gem 'client_side_validations'
|
|
gem 'simple_form'
|
|
gem 'rails3_acts_as_paranoid', "~>0.2.0"
|
|
gem 'inherited_resources'
|
|
gem 'localize_input', :git => "git://github.com/bennibu/localize_input.git"
|
|
gem 'wikicloth'
|
|
gem 'daemons'
|
|
gem 'delayed_job_active_record'
|
|
gem 'twitter-bootstrap-rails'
|
|
gem 'simple-navigation'
|
|
gem 'simple-navigation-bootstrap'
|
|
gem 'meta_search'
|
|
gem 'acts_as_versioned', git: 'git://github.com/technoweenie/acts_as_versioned.git' # Use this instead of rubygem
|
|
gem 'acts_as_tree'
|
|
gem 'acts_as_configurable', git: 'git://github.com/bwalding/acts_as_configurable.git'
|
|
|
|
group :production do
|
|
gem 'exception_notification', :require => 'exception_notifier'
|
|
end
|
|
|
|
group :development do
|
|
gem 'sqlite3'
|
|
end
|