Skip to content

Commit

Permalink
Merge branch 'dev-improvements'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Šťastný aka Botanicus committed Nov 12, 2010
2 parents 8c757c3 + 4aa3f5e commit d846d36
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
*.gem
*.rbc
~*
#*
#*
.rvmrc
.bundle
11 changes: 11 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# encoding: utf-8

source "http://gemcutter.org"

gem "eventmachine"
gem "json"

group(:test) do
gem "em-spec"
gem "bacon"
end
16 changes: 16 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
GEM
remote: http://gemcutter.org/
specs:
bacon (1.1.0)
em-spec (0.2.1)
eventmachine (0.12.10)
json (1.4.6)

PLATFORMS
ruby

DEPENDENCIES
bacon
em-spec
eventmachine
json
9 changes: 9 additions & 0 deletions bin/irb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env ruby
# encoding: utf-8

$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)

require "irb"
require "mq"

IRB.start(__FILE__)

0 comments on commit d846d36

Please sign in to comment.