Sha256: 4fd9a8475c864cf3a239bedef54437b2cbc19025b0f05b205c04b3a424337f27

Contents?: true

Size: 864 Bytes

Versions: 2

Compression:

Stored size: 864 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = 'morphine'
  s.version     = Morphine::VERSION
  s.authors     = ['Brandon Keepers']
  s.email       = ['brandon@opensoul.org']
  s.homepage    = ''
  s.summary     = %q{A lightweight dependency injection framework for Ruby}
  s.description = %q{Morphine is a lightweight dependency injection framework for Ruby. It uses a simple Ruby DSL to ease the pain of wiring your dependencies together.}

  s.rubyforge_project = 'morphine'

  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_development_dependency 'rspec', '~>2.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
morphine-0.1.1 morphine.gemspec
morphine-0.1.0 morphine.gemspec