-
Notifications
You must be signed in to change notification settings - Fork 24
/
entityjs.gemspec
33 lines (26 loc) · 1.04 KB
/
entityjs.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
29
30
31
32
33
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "entityjs/version"
Gem::Specification.new do |s|
s.name = "entityjs"
s.version = Entityjs::VERSION
s.authors = ["Ben D'Angelo"]
s.email = ["[email protected]"]
s.homepage = "http://entityjs.com"
s.summary = %q{Create HTML5 javascript games in EntityJS.}
s.description = %q{HTML5 Javascript game engine, quickly create robust, flexible and reusable games.}
s.license = 'MIT'
s.rubyforge_project = "entityjs"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rspec"
s.add_development_dependency "jasmine"
s.add_dependency "sinatra", ">= 1.3.0"
s.add_dependency "coffee-script"
s.add_dependency 'uglifier'
s.add_dependency 'json'
s.add_dependency 'cobravsmongoose'
s.add_dependency 'cssmin'
end