29 lines
705 B
Ruby
29 lines
705 B
Ruby
|
|
#encoding: utf-8
|
|||
|
|
|
|||
|
|
require('json')
|
|||
|
|
|
|||
|
|
# Because of build process, does not necessarily reflect directory path in the
|
|||
|
|
# repository.
|
|||
|
|
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'
|
|||
|
|
s.summary = 'Ruby bridge to JSX & the React JavaScript library.'
|
|||
|
|
|
|||
|
|
s.authors = ['Paul O’Shannessy']
|
|||
|
|
s.email = ['paul@oshannessy.com']
|
|||
|
|
|
|||
|
|
s.files = Dir[
|
|||
|
|
'build/react.js',
|
|||
|
|
'build/react.min.js',
|
|||
|
|
'build/react-with-addons.js',
|
|||
|
|
'build/react-with-addons.min.js',
|
|||
|
|
'build/JSXTransformer.js',
|
|||
|
|
'lib/react/source.rb'
|
|||
|
|
]
|
|||
|
|
end
|