Sha256: 2f1f3ee191c00ad2c04380a62871574daf6e57d35aabea7bfc3f53c88d5f2c4c

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

source :rubygems

## choose your poison:
# gem 'pg', '~> 0.9.0'
gem 'mysql2', '~> 0.2'

# Deploy with Capistrano
gem 'capistrano', '~> 2.9'

# If you want to enable the built in search functionality then you must un-comment
# the xapian-full & xapian-fu dependencies below. They are not included by default
# because the xapian library takes a very long time to build.
#gem 'xapian-full', "~> 1.2.3"
#gem 'xapian-fu', "~> 1.3"

## TODO: replace this path based gem with a version once the gem is live
#gem 'spontaneous', '<%= Spontaneous::VERSION %>'

gem 'spontaneous', :git => "git://github.com/SpontaneousCMS/spontaneous.git"
gem 'simultaneous', :git => "git://github.com/SpontaneousCMS/simultaneous.git"

group :production do
  gem 'thin',    '~> 1.3.1'
  gem 'unicorn', '~> 4.2'
end


# source gemfiles from Plugins & Features
Dir['*/**/Gemfile'].each do |path|
  gemfile = File.expand_path(path)
  unless gemfile == File.expand_path(__FILE__)
    dependencies = File.read(gemfile).gsub(/^\s*source.+$/, '')
    eval(dependencies)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spontaneous-0.2.0.alpha4 lib/spontaneous/generators/site/Gemfile.tt
spontaneous-0.2.0.alpha3 lib/spontaneous/generators/site/Gemfile.tt