about summary refs log tree commit homepage
path: root/config
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-04-18 21:33:40 -0700
committerEric Wong <normalperson@yhbt.net>2010-04-19 01:22:39 -0700
commit98622a1c291277ff124a586929c675e9ae67692e (patch)
treef865bac26ccbcc0a52e18ea201fb3dfbac955dc0 /config
parentb6dcf1343a379f0fb5de5cc551dbbf85da2b4cdf (diff)
downloadrainbows-98622a1c291277ff124a586929c675e9ae67692e.tar.gz
It should make life easier when dealing with and testing
complex dependencies, especially ones like Cramp which
depend on prerelease versions of gems.
Diffstat (limited to 'config')
-rw-r--r--config/.gitignore1
-rw-r--r--config/isolate.rb24
2 files changed, 25 insertions, 0 deletions
diff --git a/config/.gitignore b/config/.gitignore
new file mode 100644
index 0000000..0aaed9f
--- /dev/null
+++ b/config/.gitignore
@@ -0,0 +1 @@
+/isolate_*.rb
diff --git a/config/isolate.rb b/config/isolate.rb
new file mode 100644
index 0000000..3ac1af5
--- /dev/null
+++ b/config/isolate.rb
@@ -0,0 +1,24 @@
+# this the default config file used by John Barnette's isolate gem
+# you can create a config/isolate_local.rb file to override this
+# See the corresponding tasks in Rakefile and GNUmakefile
+# `rake isolate' or (faster in the unmodified case, `make isolate')
+
+gem 'rack', '1.1.0'
+gem 'unicorn', '0.97.0'
+
+gem 'iobuffer', '0.1.3'
+gem 'rev', '0.3.2'
+
+gem 'eventmachine', '0.12.10'
+
+gem 'sinatra', '0.9.4'
+gem 'async_sinatra', '0.1.5'
+
+gem 'neverblock', '0.1.6.2'
+
+if defined?(::Fiber)
+  gem 'case', '0.5'
+  gem 'revactor', '0.1.5'
+end
+
+gem 'cramp', '0.10'