-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_template_handler.gemspec
More file actions
29 lines (22 loc) · 998 Bytes
/
ruby_template_handler.gemspec
File metadata and controls
29 lines (22 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'ruby_template_handler/version'
Gem::Specification.new do |s|
s.name = "ruby_template_handler"
s.version = RubyTemplateHandler::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.summary = %Q{Produce JSON views using pure-ruby}
s.description = %Q{A Rails view template handler that renders Ruby objects to JSON.}
s.email = "nullstyle@gmail.com"
s.homepage = "http://github.com/aurorafeint/ruby_template_handler"
s.authors = ["Scott Fleckenstein"]
s.add_development_dependency "shoulda", ">= 2.11.1"
s.add_development_dependency "yard", "= 0.5.3"
s.add_development_dependency "mocha", "= 0.9.8"
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.markdown Rakefile rails/init.rb)
s.executables = []
s.require_path = 'lib'
s.add_dependency("actionpack", ">= 2.3.5")
end