Skip to content

Commit

Permalink
Establishing The Gem
Browse files Browse the repository at this point in the history
  • Loading branch information
arailsdemo committed Jun 12, 2011
0 parents commit d0b2340
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
1 change: 1 addition & 0 deletions .rmvrc
@@ -0,0 +1 @@
ruby 1.9.2
Empty file added .rvmrc
Empty file.
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in vmc.gemspec
gemspec
5 changes: 5 additions & 0 deletions Guardfile
@@ -0,0 +1,5 @@
guard 'rspec', :version => 2 do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
5 changes: 5 additions & 0 deletions lib/vmc.rb
@@ -0,0 +1,5 @@
require "vmc/version"

module Vmc
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/vmc/version.rb
@@ -0,0 +1,3 @@
module VMC
VERSION = "0.0.1"
end
Empty file added spec/spec_helper.rb
Empty file.
29 changes: 29 additions & 0 deletions vmc.gemspec
@@ -0,0 +1,29 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "vmc/version"

Gem::Specification.new do |s|
s.name = "vmc"
s.version = VMC::VERSION
s.authors = ["aRailsDemo"]
s.email = ["arailsdemo@gmail.com"]
s.homepage = ""
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}

s.rubyforge_project = "vmc"

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"]

s.add_development_dependency 'rspec', '~> 2.6'
s.add_development_dependency 'webmock', '~> 1.6'
s.add_development_dependency 'guard-rspec', '~> 0.4'

s.add_runtime_dependency 'yajl-ruby', '~> 0.8'
s.add_runtime_dependency 'faraday_middleware', '~> 0.6'
s.add_runtime_dependency 'rash', '~> 0.3'
s.add_runtime_dependency 'multi_json', '~> 1.0'
end

0 comments on commit d0b2340

Please sign in to comment.