-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchr.gemspec
32 lines (24 loc) · 1002 Bytes
/
chr.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
28
# coding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'chr/version'
Gem::Specification.new do |s|
s.name = 'chr'
s.version = Chr::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Alexander Kravets']
s.email = '[email protected]'
s.license = 'MIT'
s.homepage = 'http://slatestudio.com'
s.summary = 'A simple and lightweight library for building data management web apps'
s.description = <<-DESC
Character is a library written in CoffeeScript with a help of jQuery that allows to
build data management web applications in a fast and flexible way, e.g. CMS, news reader,
email client etc. It's responsive by default and designed to be data source independent.
DESC
s.rubyforge_project = 'chr'
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.add_dependency('bourbon', '>= 3.2')
s.add_dependency('coffee-rails', '>= 4.0')
s.add_dependency('normalize-rails', '>= 3.0')
end