Sha256: e2861df1f4cebe41ebc29ae19a08b6ea3d0de92b030bdcbfce08c6d8ff8c35e3

Contents?: true

Size: 1.15 KB

Versions: 3

Compression:

Stored size: 1.15 KB

Contents

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

Gem::Specification.new do |gem|
  gem.name          = "saxomattic"
  gem.version       = Saxomattic::VERSION
  gem.authors       = ["Brandon Dewitt"]
  gem.email         = ["brandonsdewitt+saxomattic@gmail.com"]
  gem.description   = %q{ A gem to combine all the wonderful that is sax-machine with the magic that is active_attr }
  gem.summary       = %q{ By including a module "Saxomattic" you can declare xml structured documents with active_attr goodies }
  gem.homepage      = "https://github.com/abrandoned/saxomattic.git"

  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 "active_attr"
  gem.add_dependency "activesupport"
  gem.add_dependency "sax-machine"

  gem.add_development_dependency "pry"
  gem.add_development_dependency "rake"
  gem.add_development_dependency "rspec"
  gem.add_development_dependency "simplecov"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
saxomattic-0.0.3 saxomattic.gemspec
saxomattic-0.0.2 saxomattic.gemspec
saxomattic-0.0.1 saxomattic.gemspec