slow_blink 0.0.1 → 0.0.2

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: af5593a246569746a21d7f9f96d3631da09abc9d
4
- data.tar.gz: 60f78826cab4ed95a813287d40876523f13c03fb
3
+ metadata.gz: 6a066eebd8343e1b39f830aca8e55abe9292fca7
4
+ data.tar.gz: 088028f907b7d90cf50bdcfb2229cc959d9b61f2
5
5
  SHA512:
6
- metadata.gz: 71d0b1c611209412d2465ef0f0a36282af23b80beaa3856778109f36086234e19580793cb775cc85776f1ce4f03f211254e449c983248eb54a0793da0c7c9aaf
7
- data.tar.gz: 61fcf651d24317aa03248963971bab67e5d008095970b83b5c8be66eee1ab66231609e806186c89aaaf247dd8820c2487191c969720c9ca4e8f709601320138a
6
+ metadata.gz: c955cf6e36a9850c86ae042164c698a33fe34bf2cdadb8a37e94eea8c74f31912fdf3029ba28a7daf67f20bd8a3e375b41d6a353521c3b56b0189b0007ea662f
7
+ data.tar.gz: a9bc364db8c76454869f3a4b26dd5734612e25d5a36b372c8682a4797102a9544fa1d816e4cc407976af88a60f81e7676be6bda0e01f1053a51b818781591c81
@@ -0,0 +1,27 @@
1
+ #ifndef COMMON_H
2
+ #define COMMON_H
3
+
4
+ /* Value type. */
5
+ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
6
+ #include <ruby.h>
7
+ typedef VALUE YYSTYPE;
8
+ # define YYSTYPE_IS_TRIVIAL 1
9
+ # define YYSTYPE_IS_DECLARED 1
10
+ #endif
11
+
12
+ /* Location type. */
13
+ #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
14
+ typedef struct YYLTYPE YYLTYPE;
15
+ struct YYLTYPE
16
+ {
17
+ int first_line;
18
+ int first_column;
19
+ int last_line;
20
+ int last_column;
21
+ };
22
+ # define YYLTYPE_IS_DECLARED 1
23
+ # define YYLTYPE_IS_TRIVIAL 1
24
+ #endif
25
+
26
+
27
+ #endif
@@ -0,0 +1,3 @@
1
+ require 'mkmf'
2
+ create_makefile('slow_blink/ext_schema_parser')
3
+