29 lines
		
	
	
		
			694 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			694 B
		
	
	
	
		
			Ruby
		
	
	
	
source 'https://rubygems.org'
 | 
						|
gemspec
 | 
						|
 | 
						|
gem 'rake', '~> 10.1'
 | 
						|
gem 'rdoc', '~> 3.11'
 | 
						|
gem 'redgreen', '~> 1.2'
 | 
						|
gem 'shoulda', '~> 3.5'
 | 
						|
gem 'rr', '~> 1.1'
 | 
						|
gem 'cucumber', '1.3.18'
 | 
						|
gem 'RedCloth', '~> 4.2'
 | 
						|
gem 'maruku', '~> 0.7.0'
 | 
						|
gem 'rdiscount', '~> 2.0'
 | 
						|
gem 'launchy', '~> 2.3'
 | 
						|
gem 'simplecov', '~> 0.9'
 | 
						|
gem 'simplecov-gem-adapter', '~> 1.0.1'
 | 
						|
gem 'mime-types', '~> 1.5'
 | 
						|
gem 'activesupport', '~> 3.2.13'
 | 
						|
gem 'jekyll_test_plugin'
 | 
						|
gem 'jekyll_test_plugin_malicious'
 | 
						|
gem 'rouge', '~> 1.7'
 | 
						|
gem 'liquid-c', '~> 0.0.3'
 | 
						|
gem 'minitest' if RUBY_PLATFORM =~ /cygwin/
 | 
						|
gem 'test-unit' if RUBY_PLATFORM =~ /cygwin/ || RUBY_VERSION.start_with?("2.2")
 | 
						|
 | 
						|
if ENV['BENCHMARK']
 | 
						|
  gem 'rbtrace'
 | 
						|
  gem 'stackprof'
 | 
						|
end
 |