Sha256: 85b21f82d9aa95d68d8e1e4936bb79aaaf79731b2d921a7f756b622a301dc8a0

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rocktumbler/version'

Gem::Specification.new do |spec|
  spec.name          = 'rocktumbler'
  spec.version       = Rocktumbler::VERSION
  spec.authors       = ['Simon Reed']
  spec.email         = ['simonpreed@gmail.com']

  spec.summary       = 'Polish your Gemfile to make sure it remains consistent.'
  spec.description   = 'Rocktumbler is a gem that will take your existing \
Gemfile and ensures that it remains formatted and consistent.'
  spec.homepage      = 'https://github.com/simonreed/rocktumbler'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject { |f|
    f.match(%r{^(test|spec|features)/})
  }
  spec.executables   = %w(tumble)
  spec.require_paths = ['lib']

  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency('rspec', '~> 3.2.0', '>= 3.2.0')

  spec.add_runtime_dependency 'bundler', '~> 1.7'
  spec.add_runtime_dependency 'rainbow', '2.0.0'
  spec.add_runtime_dependency 'rouge', '1.9.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rocktumbler-0.2.1 rocktumbler.gemspec
rocktumbler-0.2.0 rocktumbler.gemspec