Sha256: a3c06a180a084f6d7f0035d6330a9c1d2e6d8c9dbdd60fbd3ec1d649753e5f31

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

source 'https://rubygems.org'

if File.exist?('tdiary.gemspec')
	# directly installed (e.g. git clone, archive file)
	gemspec
else
	# installed by gem
	gem 'tdiary'

	# use edge tDiary
	# gem 'tdiary', :git => 'git@github.com:tdiary/tdiary-core.git'
end

# if you use tdiary-contrib gem, uncomment this line.
# gem 'tdiary-contrib'
# use edge tDiary contrib
# gem 'tdiary-contrib', :git => 'git@github.com:tdiary/tdiary-contrib.git'

gem 'coffee-script', :group => [:development, :test]

gem 'dalli'
gem 'redis'
gem 'redis-namespace'

platforms :mri do
  gem 'thin'

  # if you don't have JavaScript processor, uncomment this line.
  # gem 'therubyracer'

  gem 'redcarpet'
  gem 'pygments.rb'
  gem 'twitter-text', :require => false
end

platforms :jruby do
  gem 'trinidad'
end

group :development do
  gem 'pit', :require => false
  gem 'racksh', :require => false

  group :test do
    gem 'pry'
    gem 'tapp'
    gem 'test-unit', :require => 'test/unit'
    gem 'rspec'
    gem 'capybara', :require => 'capybara/rspec'
    gem 'selenium-webdriver'
    gem 'launchy'
    gem 'sequel'
    gem 'sqlite3'
    gem 'jasmine'
    gem 'simplecov', :require => false
    gem 'coveralls', :require => false
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdiary-3.2.2.20130617 Gemfile