forked from jvatic/react-jsx-sprockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-jsx-sprockets.gemspec
24 lines (21 loc) · 1023 Bytes
/
react-jsx-sprockets.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'react-jsx-sprockets/version'
Gem::Specification.new do |gem|
gem.authors = ["Jesse Stuart"]
gem.email = ["jesse@jessestuart.ca"]
gem.description = %q{Use compiled React JSX files with Sprockets}
gem.summary = %q{Use compiled React JSX files with Sprockets}
gem.homepage = "https://github.com/jvatic/react-jsx-sprockets"
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 = "react-jsx-sprockets"
gem.require_paths = ["lib"]
gem.version = ReactJSXSprockets::VERSION
gem.add_runtime_dependency "execjs", ">= 1.2.9"
gem.add_runtime_dependency "tilt", ">= 1.3.3"
gem.add_runtime_dependency "sprockets", ">= 2.0.3"
gem.add_runtime_dependency "yajl-ruby"
end