forked from react/react
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-source.gemspec
More file actions
Latest commit
25 lines (20 loc) · 605 Bytes
/
Copy pathreact-source.gemspec
File metadata and controls
25 lines (20 loc) · 605 Bytes
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
#encoding: utf-8
require('json')
package=JSON.parse(File.read('package.json'))
gemspec=Gem::Specification.newdo |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