Files
react/react-source.gemspec
Paul O’Shannessy 75897c2dcd Initial public release
2013-05-29 12:54:02 -07:00

24 lines
536 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#encoding: utf-8
require('json')
package = JSON.parse(File.read('package.json'))
gemspec = Gem::Specification.new do |s|
s.name = 'react-source'
s.version = package['version']
s.license = 'Apache-2.0'
s.homepage = 'https://github.com/facebook/react.js'
s.summary = 'Ruby bridge to JSX & the React JavaScript library.'
s.authors = ['Paul OShannessy']
s.email = ['paul@oshannessy.com']
s.files = Dir[
'build/react.js',
'build/react.min.js',
'build/JSXTransformer.js',
'lib/react/source.rb'
]
end