Sha256: e73bfcdd988fe6be865fc9294bc536c554e7e24cfc20378128e548c65c88c127

Contents?: true

Size: 776 Bytes

Versions: 3

Compression:

Stored size: 776 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "git_wrapper/version"

Gem::Specification.new do |s|
  s.name        = 'git_wrapper'
  s.version     = GitWrapper::VERSION
  s.authors     = ['Gabriel Naiman']
  s.email       = ['gabynaiman@gmail.com']
  s.homepage    = 'https://github.com/gabynaiman/git_wrapper'
  s.summary     = 'OO git command line wrapper'
  s.description = 'OO git command line wrapper'

  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_runtime_dependency 'nokogiri'
  s.add_development_dependency 'rspec'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
git_wrapper-1.0.2 git_wrapper.gemspec
git_wrapper-1.0.1 git_wrapper.gemspec
git_wrapper-1.0.0 git_wrapper.gemspec