Skip to content

Commit

Permalink
Initial commit of barkeep client gem.
Browse files Browse the repository at this point in the history
  • Loading branch information
cespare committed Dec 8, 2011
1 parent 3c7f48a commit d29a4a0
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/.gitignore
@@ -0,0 +1 @@
*.gem
1 change: 1 addition & 0 deletions client/.rbenv-version
@@ -0,0 +1 @@
1.9.2-p290
4 changes: 4 additions & 0 deletions client/Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in barkeep-client.gemspec
gemspec
4 changes: 4 additions & 0 deletions client/README.md
@@ -0,0 +1,4 @@
Barkeep Client
==============

## Coming soon!
1 change: 1 addition & 0 deletions client/Rakefile
@@ -0,0 +1 @@
require "bundler/gem_tasks"
22 changes: 22 additions & 0 deletions client/barkeep_client.gemspec
@@ -0,0 +1,22 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = "barkeep-client"
s.version = "0.0.1"
s.authors = ["Caleb Spare"]
s.email = ["caleb@ooyala.com"]
s.homepage = ""
s.summary = %q{Who is the barkeep?}
s.description = %q{Who is the barkeep?}

s.rubyforge_project = "barkeep-client"

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) }
s.require_paths = ["lib"]

# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end
12 changes: 12 additions & 0 deletions client/bin/barkeep
@@ -0,0 +1,12 @@
#!/usr/bin/env ruby

puts <<-'EOS'
_ _ _ _ _ _ ___
| | (_) | | | | | | | | |__ \
__ _| |__ ___ _ ___ | |_| |__ ___ | |__ __ _ _ __| | _____ ___ _ __ ) |
\ \ /\ / / '_ \ / _ \ | / __| | __| '_ \ / _ \ | '_ \ / _` | '__| |/ / _ \/ _ \ '_ \ / /
\ V V /| | | | (_) | | \__ \ | |_| | | | __/ | |_) | (_| | | | < __/ __/ |_) |_|
\_/\_/ |_| |_|\___/ |_|___/ \__|_| |_|\___| |_.__/ \__,_|_| |_|\_\___|\___| .__/(_)
| |
|_|
EOS

0 comments on commit d29a4a0

Please sign in to comment.