coffee-react 0.3.2 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b48924fd9b04b5a7768a2be945d58df1a5ea0ba9
4
- data.tar.gz: cbdc72d7b99883245bf5d019a797cbbc2876a939
3
+ metadata.gz: 221be23805ca7f31a57e8e339c6cd14494d4b529
4
+ data.tar.gz: 6ae3f47fc53183cbea885719a93a6abb179c7f90
5
5
  SHA512:
6
- metadata.gz: 87421c47981f0b1950d71defb867b7d6cb308f75f53de5cb003229f8502d9df16047e447da207cce553831119d51a97d8dddf27d9cdf6b70a4ed7c1d90dbc43f
7
- data.tar.gz: 690f10cb4001f335c3480189294962b9ae05d76641ede781517e23e0a80c7ea281e1cff97094ce787fd06c825934c8099dfff4f26f4955b3129c82b089e2f98a
6
+ metadata.gz: 6e57c3d5f022aff35daaf9ca8fb97aaf0e6c23a91c4716f8c9390b596ed71b96dcefd1defab29307ada2cbbecc945b8b5b1cf53249b1179ee7c43e318f3f1dab
7
+ data.tar.gz: 7578aa1247a7c6424249a5f28de9dfc2cdab8e1c25e8a63a7d5092d6eadc6abd67ce5cd9927962a71a6dedbd8129db5a4e79b58830639d982ce4bb472cab3672
data/README.md CHANGED
@@ -24,3 +24,5 @@ standard library.
24
24
  ### ExecJS
25
25
 
26
26
  The [ExecJS](https://github.com/sstephenson/execjs) library is used to automatically choose the best JavaScript engine for your platform. Check out its [README](https://github.com/sstephenson/execjs/blob/master/README.md) for a complete list of supported engines.
27
+
28
+ This gem has been tested against the following ExecJS runtimes: Node, RubyRacer, JavaScriptCore. If you encounter any problems with these or any other ExecJS runtimes, please [create a issue](https://github.com/jsdf/ruby-coffee-react/issues).
@@ -984,9 +984,9 @@ module.exports = Parser = (function() {
984
984
 
985
985
  })();
986
986
 
987
- OPENING_TAG = /^<([-A-Za-z0-9_]+)((?:\s+[\w-]+(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:{[\s\S]*?})|[^>\s]+))?)*?\s*)(\/?)>/;
987
+ OPENING_TAG = /^<([-A-Za-z0-9_\.]+)((?:\s+[\w-]+(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:{[\s\S]*?})|[^>\s]+))?)*?\s*)(\/?)>/;
988
988
 
989
- CLOSING_TAG = /^<\/([-A-Za-z0-9_]+)[^>]*>/;
989
+ CLOSING_TAG = /^<\/([-A-Za-z0-9_\.]+)[^>]*>/;
990
990
 
991
991
  TAG_ATTRIBUTES = /(?:([-A-Za-z0-9_]+)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|(?:{((?:\\.|[\s\S])*)})|([^>\s]+)))?)|([\s\n]+)/;
992
992
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coffee-react
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Friend
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-18 00:00:00.000000000 Z
11
+ date: 2014-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: execjs