Sha256: 2ab5f7602ca45580e72349aae2d770b65f0e0fd364586b4aa3ffaaff777602fa

Contents?: true

Size: 890 Bytes

Versions: 3

Compression:

Stored size: 890 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name      = "gitback"
  s.version   = Gitback::VERSION
  s.platform  = Gem::Platform::RUBY
  s.authors   = ["Bryce Thornton"]
  s.email     = ["brycethornton@gmail.com"]
  s.homepage  = "http://github.com/brycethornton/gitback"
  s.summary = %q{A simple ruby library for backing up files to git}
  s.description = %q{Provide a list of files and/or directories and gitback will copy them to your git repo, commit and push when there are changes.}

  s.add_dependency "grit", ">= 2.4.1"

  s.rubyforge_project = "gitback"

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gitback-0.1.4 gitback.gemspec
gitback-0.1.3 gitback.gemspec
gitback-0.1.2 gitback.gemspec