Sha256: d517dcf00a22c31f2738540835e0776263691bfdaa3f1e1cb51a47d6a7780a76

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 KB

Contents

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

Gem::Specification.new do |gem|
  gem.name          = "fixbraces"
  gem.version       = Fixbraces::VERSION
  gem.authors       = ["Abizer Nasir"]
  gem.email         = ["abizern@junglecandy.com"]
  gem.description   = <<DESC
I prefer my opening braces to be on the same line as the opening clause.
Xcode, and people I collaborate with are inconsistent about the placement
of the opening brace. This corrects it for a file or a directory.
DESC
  gem.summary       = "Puts the opening brace on the same line"
  gem.homepage      = "http://abizern.org/fixbraces/"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_dependency "trollop" , "~> 2.0"
  gem.add_development_dependency "rspec", "~> 2.12"
  gem.add_development_dependency "cucumber", "~> 1.2"
  gem.add_development_dependency "aruba", "~> 0.5"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fixbraces-1.3.0 fixbraces.gemspec
fixbraces-1.2.0 fixbraces.gemspec
fixbraces-1.1.0 fixbraces.gemspec