forked from datastax/ruby-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (39 loc) · 816 Bytes
/
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
source 'https://rubygems.org/'
gemspec
gem 'snappy', :group => [:development, :test]
gem 'lz4-ruby', :group => [:development, :test]
gem 'rake-compiler', :group => [:development, :test]
gem 'cliver', :group => [:development, :test]
group :development do
platforms :mri_19 do
gem 'perftools.rb'
gem 'guard'
gem 'guard-nanoc'
end
end
group :test do
gem 'rspec'
gem 'rspec-wait'
gem 'rspec-collection_matchers'
gem 'simplecov'
gem 'cucumber'
gem 'aruba'
gem 'os'
gem 'minitest'
end
group :docs do
gem 'yard'
platforms :mri_19 do
gem 'gherkin'
gem 'htmlbeautifier'
gem 'nanoc'
gem 'nanoc-toolbox'
gem 'compass'
gem 'bootstrap-sass'
gem 'nokogiri'
gem 'rubypants'
gem 'rouge'
gem 'redcarpet'
gem 'ditaarb'
end
end