Skip to content

Commit

Permalink
base gem
Browse files Browse the repository at this point in the history
  • Loading branch information
igrigorik committed Jan 23, 2011
1 parent bc3cc87 commit 6cb41f8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
3 changes: 3 additions & 0 deletions em-socksify.gemspec
Expand Up @@ -14,6 +14,9 @@ Gem::Specification.new do |s|

s.rubyforge_project = "em-socksify"

s.add_dependency "eventmachine"
s.add_development_dependency "rspec"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
Expand Down
8 changes: 3 additions & 5 deletions lib/em-socksify.rb
@@ -1,5 +1,3 @@
module Em
module Socksify
# Your code goes here...
end
end
require 'eventmachine'

require 'em-socksify/socksify'
3 changes: 3 additions & 0 deletions lib/em-socksify/socksify.rb
@@ -0,0 +1,3 @@
module EventMachine

end
4 changes: 4 additions & 0 deletions spec/helper.rb
@@ -0,0 +1,4 @@
require 'rubygems'
require 'bundler/setup'

require 'em-socksify'
5 changes: 5 additions & 0 deletions spec/socksify_spec.rb
@@ -0,0 +1,5 @@
require 'helper'

describe EventMachine do

end

0 comments on commit 6cb41f8

Please sign in to comment.