-
Notifications
You must be signed in to change notification settings - Fork 1
/
simplest_view.gemspec
27 lines (24 loc) · 1.22 KB
/
simplest_view.gemspec
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'simplest_view/version'
Gem::Specification.new do |gem|
gem.name = "simplest_view"
gem.version = SimplestView::VERSION
gem.authors = ["Tony Pitale"]
gem.email = ["[email protected]"]
gem.description = %q{SimplestView splits up views and templates in a Rails 3 application to make it easier to improve the code quality therein.}
gem.summary = %q{SimplestView splits up views and templates in a Rails 3 application to make it easier to improve the code quality therein.}
gem.homepage = "https://github.com/tpitale/simplest_view"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "bundler", "~> 1.3"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "mocha"
gem.add_development_dependency "bourne"
gem.add_development_dependency "simplecov"
gem.add_development_dependency "rails", ">= 3.0"
end