Skip to content

Instantly share code, notes, and snippets.

@mitchellh
Created September 13, 2010 19:32
Show Gist options
  • Save mitchellh/577872 to your computer and use it in GitHub Desktop.
Save mitchellh/577872 to your computer and use it in GitHub Desktop.
From b018eb0f1257f5ce2d603f975f93918c3ea73157 Mon Sep 17 00:00:00 2001
From: Mitchell Hashimoto <mitchell.hashimoto@gmail.com>
Date: Mon, 13 Sep 2010 13:32:00 -0600
Subject: [PATCH 1/2] Gemfile for development
---
.gitignore | 1 +
Gemfile | 3 +++
Gemfile.lock | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
Rakefile | 2 ++
4 files changed, 56 insertions(+), 0 deletions(-)
create mode 100644 Gemfile
create mode 100644 Gemfile.lock
diff --git a/.gitignore b/.gitignore
index e009b57..5715aa7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@
.#*
\#*
.emacs*
+.bundle/
\ No newline at end of file
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..c80ee36
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,3 @@
+source "http://rubygems.org"
+
+gemspec
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..828526e
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,50 @@
+PATH
+ remote: .
+ specs:
+ sinatra (1.0)
+ rack (>= 1.0)
+ tilt (~> 1.1)
+
+GEM
+ remote: http://rubygems.org/
+ specs:
+ RedCloth (4.2.3)
+ abstract (1.0.0)
+ builder (2.1.2)
+ erubis (2.6.6)
+ abstract (>= 1.0.0)
+ haml (3.0.18)
+ less (1.2.21)
+ mutter (>= 0.4.2)
+ treetop (>= 1.4.2)
+ liquid (2.2.2)
+ mutter (0.5.3)
+ polyglot (0.3.1)
+ rack (1.2.1)
+ rack-test (0.5.4)
+ rack (>= 1.0)
+ rake (0.8.7)
+ rdiscount (1.6.5)
+ shotgun (0.8)
+ rack (>= 1.0)
+ tilt (1.1)
+ treetop (1.4.8)
+ polyglot (>= 0.3.1)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ RedCloth
+ builder
+ erubis
+ haml
+ less
+ liquid
+ rack (>= 1.0)
+ rack-test (>= 0.3.0)
+ rake
+ rdiscount
+ shotgun (~> 0.6)
+ sinatra!
+ tilt (~> 1.1)
diff --git a/Rakefile b/Rakefile
index db31ab9..a50ab23 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,3 +1,5 @@
+require 'rubygems'
+require 'bundler/setup'
require 'rake/clean'
require 'rake/testtask'
require 'fileutils'
--
1.7.2.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment