Sha256: 3813f618c9752410ffd2036c1e135c17ee3632dd1375b8c5ffc541c23a025b6d

Contents?: true

Size: 1.36 KB

Versions: 6

Compression:

Stored size: 1.36 KB

Contents

source :rubygems

# This is the minimum of dependency required to run 
# the radiant instance generator, which is (normally)
# the only time the radiant gem functions as an 
# application. The instance has its own Gemfile, which
# requires radiant and therefore pulls in every 
# dependency mentioned in radiant.gemspec.

gem "rails", "3.2.8"
gem "sqlite3", "1.3.5", :group => [:development, :test], :platform => :ruby

# When radiant is installed as a gem you can run all of
# its tests and specs from an instance. If you're working
# on radiant itself and you want to run specs from the 
# radiant root directory, uncomment the lines below and
# run `bundle install`.

gemspec
# gem "compass-rails", "~> 1.0.3"

# gem "radiant-archive-extension",             "~> 1.0.7"
# gem "radiant-clipped-extension",             "~> 1.1.0"
# gem "radiant-debug-extension",               "~> 1.0.2"
# gem "radiant-exporter-extension",            "~> 1.1.0"
# gem "radiant-markdown_filter-extension",     "~> 1.0.2"
# gem "radiant-sheets-extension",              "~> 1.1.0.alpha"
# gem "radiant-snippets-extension",            "~> 1.1.0.alpha"
# gem "radiant-site_templates-extension",      "~> 1.0.4"
# gem "radiant-smarty_pants_filter-extension", "~> 1.0.2"
# gem "radiant-textile_filter-extension",      "~> 1.0.4"

if ENV['TRAVIS']
  gemspec :development_group => :test
  gem "mysql"
  gem "pg"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
radiant-1.1.4 GemfileRails3
radiant-1.1.3 GemfileRails3
radiant-1.1.2 GemfileRails3
radiant-1.1.1 GemfileRails3
radiant-1.1.0 GemfileRails3
radiant-1.1.0.rc1 GemfileRails3