Sha256: 8aefb4d3dc3f61d72342d1f65afdc48cfcfafc1e028dddce266caf9a632e9ec5

Contents?: true

Size: 989 Bytes

Versions: 3

Compression:

Stored size: 989 Bytes

Contents

#!/usr/bin/env gem build
# encoding: utf-8

require File.expand_path('../lib/sinatra/decorator/version', __FILE__)

Gem::Specification.new do |s|
  s.name          = "sinatra-decorator"
  s.rubyforge_project = "sinatra-decorator"
  s.authors       = ["Naotoshi Seo"]
  s.email         = ["sonots@gmail.com"]
  s.summary       = "View models for sinatra"
  s.homepage      = "https://github.com/sonots/sinatra-decorator#readme"
  s.description   = "Object-Oriented layer of presentation logic to your Sinatra apps."
  s.required_rubygems_version = ">= 1.3.6"
  s.version       = Sinatra::Decorator.version
  s.date          = Time.now.strftime("%Y-%m-%d")

  s.extra_rdoc_files = Dir["*.rdoc"]
  s.files         = `git ls-files`.split($\)
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.executables   = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  s.rdoc_options  = ["--charset=UTF-8"]
  
  s.add_runtime_dependency "activesupport"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sinatra-decorator-0.2.0 sinatra-decorator.gemspec
sinatra-decorator-0.1.1 sinatra-decorator.gemspec
sinatra-decorator-0.0.2 sinatra-decorator.gemspec