-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsilica.gemspec
27 lines (22 loc) · 1020 Bytes
/
silica.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'silica/version'
Gem::Specification.new do |spec|
spec.name = "silica"
spec.version = Silica::VERSION
spec.authors = ["youchan"]
spec.email = ["[email protected]"]
spec.summary = %q{Web application framework spcialized for the single page applications using Opalrb.}
spec.description = %q{Web application framework spcialized for the single page applications using Opalrb.}
spec.homepage = "https://github.com/youchan/silica"
spec.files = Dir['lib/**/*.rb'] + Dir['bin/*'] + Dir['template/**/*']
spec.bindir = "bin"
spec.executables = "silica"
spec.require_paths = ["lib"]
spec.add_runtime_dependency "thor"
spec.add_runtime_dependency "git"
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
end