Sha256: 42ad8a963b6d03029efc60eb9c89348d101ea279cffc83d85be8a4269ac4c8f2

Contents?: true

Size: 1.18 KB

Versions: 14

Compression:

Stored size: 1.18 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "motorhead"
  spec.version       = Motorhead::VERSION
  spec.authors       = ["Akira Matsuda"]
  spec.email         = ["ronnie@dio.jp"]

  spec.summary       = 'A safe and rapid prototyping framework for Rails'
  spec.description   = 'Motorhead is a Rails Engine framework that can be used for rapid prototyping, feature toggle, or A/B testing'
  spec.homepage      = 'https://github.com/amatsuda/motorhead'
  spec.license       = "MIT"

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

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest"
  spec.add_development_dependency 'rails'
  spec.add_development_dependency 'sqlite3'
  spec.add_development_dependency 'capybara'
  spec.add_development_dependency 'byebug'
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
motorhead-0.4.1 motorhead.gemspec
motorhead-0.4.0 motorhead.gemspec
motorhead-0.3.9 motorhead.gemspec
motorhead-0.3.8 motorhead.gemspec
motorhead-0.3.7 motorhead.gemspec
motorhead-0.3.6 motorhead.gemspec
motorhead-0.3.5 motorhead.gemspec
motorhead-0.3.4 motorhead.gemspec
motorhead-0.3.3 motorhead.gemspec
motorhead-0.3.2 motorhead.gemspec
motorhead-0.3.1 motorhead.gemspec
motorhead-0.3.0 motorhead.gemspec
motorhead-0.2.0 motorhead.gemspec
motorhead-0.1.0 motorhead.gemspec