Sha256: 357b81e8adaba7334b96ec9607e0c086583c83cd47fddbb30800ab8b23d7c408

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "cucumber/platform"

Gem::Specification.new do |s|
  s.name        = 'cql'
  s.version     = "0.0.2"
  s.authors     = ["Jarrod Folino"]
  s.description = 'Cucumber Query Language'
  s.summary     = "cucumber-#{s.version}"
  s.email       = 'jdfolino@gmail.com'

  s.platform    = Gem::Platform::RUBY
  s.post_install_message = %{
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)

Thank you for installing cql (Cucumber Query Language)

(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)

}

  s.add_runtime_dependency 'gherkin', '~> 2.8.0'
  s.add_runtime_dependency 'json', '>= 1.4.6'

  s.add_development_dependency 'rake', '>= 0.9.2'
  s.add_development_dependency 'rspec', '~> 2.7.0'


  s.rubygems_version = ">= 1.6.1"
  s.files            = `git ls-files`.split("\n").reject {|path| path =~ /\.gitignore$/ }
  s.test_files       = `git ls-files -- {spec}/*`.split("\n")
  s.executables      = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.rdoc_options     = ["--charset=UTF-8"]
  s.require_path     = "lib"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cql-0.0.2 cql.gemspec