-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathr_kit.gemspec
More file actions
20 lines (18 loc) · 895 Bytes
/
r_kit.gemspec
File metadata and controls
20 lines (18 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'r_kit/version'
Gem::Specification.new do |gem|
gem.name = "r_kit"
gem.version = RKit::VERSION
gem.authors = ["Thomas Petrachi"]
gem.email = ["thomas.petrachi@vodeclic.com"]
gem.description = %q{Rails tools box}
gem.summary = %q{Rails tools box : Core extentions, Pagination, Decoration, CSS, Javascript, and others comming. A flexible gem that hold a number of basics services for rails applications.}
gem.homepage = "https://github.com/petrachi/r_kit"
gem.license = 'MIT'
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"]
end