Skip to content

Commit

Permalink
Crud
Browse files Browse the repository at this point in the history
  • Loading branch information
iconara committed Aug 1, 2013
0 parents commit b349bdc
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .rspec
@@ -0,0 +1,3 @@
--color
--format doc
-I lib
1 change: 1 addition & 0 deletions .ruby-gemset
@@ -0,0 +1 @@
etcd-rb
1 change: 1 addition & 0 deletions .ruby-version
@@ -0,0 +1 @@
1.9.3-p327
7 changes: 7 additions & 0 deletions Gemfile
@@ -0,0 +1,7 @@
source 'https://rubygems.org/'

gem 'httpclient'

group :test do
gem 'rspec'
end
20 changes: 20 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,20 @@
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.4)
httpclient (2.3.4.1)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-core (2.14.4)
rspec-expectations (2.14.0)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.2)

PLATFORMS
ruby

DEPENDENCIES
httpclient
rspec
Empty file added lib/etcd.rb
Empty file.
Empty file added lib/etcd/client.rb
Empty file.
Empty file added spec/etcd/client_spec.rb
Empty file.
4 changes: 4 additions & 0 deletions spec/spec_helper.rb
@@ -0,0 +1,4 @@
# encoding: utf-8

require 'bundler/setup'
require 'etcd'

0 comments on commit b349bdc

Please sign in to comment.