-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgeminstaller.yml
50 lines (49 loc) · 1.35 KB
/
geminstaller.yml
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
---
# GemInstaller config file which specifies the actual build, test, and doc dependencies for GemInstaller itself.
defaults:
install_options: --no-ri --no-rdoc
#fix_dependencies: true
gems:
- name: diff-lcs
version: '>= 1.1.2'
- name: hoe
version: '>= 2.3.2'
- name: hoe-seattlerb
version: '>= 1.2.0'
- name: open4
version: '>= 0.9.6'
- name: rake
version: '>= 0.7.1'
- name: rcov
version: '>= 0.7.0.1'
platform: <%= RUBY_PLATFORM =~ /mswin/ ? 'mswin32' : 'ruby'%>
- name: RedCloth
# version: '= 3.0.4'
version: '= 4.0.4'
- name: rspec
version: '>= 1.2.8'
# install dev dependencies for rspec, or else regression tests on older versions of rubygems with the dev dependencies
# bug (1.0, 1.1) fail - and currently Hoe swallows Rspec load error silently
# install_options: --no-ri --no-rdoc --development # but since 2010-05-10 rspec fails with dev dependencies
install_options: --no-ri --no-rdoc
- name: cmdparse
version: '>= 2.0.2'
- name: ruby-debug
version: '>= 0.9.3'
- name: webgen
version: '= 0.5.5'
- name: minitest
version: '1.5.0'
# - name: gettalong-webgen
# version: '>= 0.5.5.20081001'
<% if RUBY_PLATFORM =~ /mswin/ %>
- name: win32-process
version: '>= 0.5.5'
platform: 'mswin32'
- name: win32console
version: '>= 1.0.8'
platform: 'mswin32'
- name: win32-open3
version: '>= 0.2.5'
platform: 'mswin32'
<% end %>