forked from holtkampw/themes_for_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
themes_for_rails.gemspec
25 lines (21 loc) · 1.04 KB
/
themes_for_rails.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/themes_for_rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Lucas Florio"]
gem.email = ["[email protected]"]
gem.summary = "Theme Support for Rails 3"
gem.description = %q{It allows an application to have many different ways of rendering static assets and dynamic views.}
gem.homepage = "https://github.com/lucasefe/themes_for_rails"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "themes_for_rails"
gem.require_paths = ["lib"]
gem.version = ThemesForRails::VERSION
gem.add_dependency('rails', [">= 3.0.0"])
gem.add_development_dependency "sqlite3"
gem.add_development_dependency "test-unit"
gem.add_development_dependency "contest"
gem.add_development_dependency "mocha"
gem.add_development_dependency('rails', ["= 3.0.11"])
end