forked from pgharts/trusty-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (41 loc) · 1.61 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
source 'https://rubygems.org'
# 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.18"
gem "mysql"
gem "haml-rails"
gemspec
# 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"
group :development, :test do
gem "cucumber-rails", "~> 1.4.1", :require => false
gem "database_cleaner", "~> 0.6.5"
gem "nokogiri", "~> 1.5.10"
gem "rspec-rails", '~> 3.0.0'
gem "launchy", '~> 2.4.2'
gem "test-unit", '~> 2.5.5'
end
if ENV['TRAVIS']
gemspec :development_group => :test
gem "mysql"
gem "pg"
end