mysql2-replication 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/mysql2-replication/extconf.rb +62 -0
- data/ext/mysql2-replication/mysql2_replication.c +1427 -0
- data/lib/mysql2-replication/version.rb +1 -1
- data/mysql2-replication.gemspec +3 -1
- metadata +7 -4
data/mysql2-replication.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
clean_white_space.call(entries[entries.index("Description") + 1])
|
20
20
|
description = clean_white_space.call(entries[entries.index("Description") + 1])
|
21
21
|
spec.summary, spec.description, = description.split(/\n\n+/, 3)
|
22
|
-
spec.license = "
|
22
|
+
spec.license = "MIT"
|
23
23
|
spec.files = [
|
24
24
|
"README.md",
|
25
25
|
"LICENSE.txt",
|
@@ -28,6 +28,8 @@ Gem::Specification.new do |spec|
|
|
28
28
|
"#{spec.name}.gemspec",
|
29
29
|
]
|
30
30
|
spec.files += Dir.glob("lib/**/*.rb")
|
31
|
+
spec.files += Dir.glob("ext/**/*.{c,rb}")
|
32
|
+
spec.extensions = ["ext/mysql2-replication/extconf.rb"]
|
31
33
|
Dir.chdir("bin") do
|
32
34
|
spec.executables = Dir.glob("*")
|
33
35
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mysql2-replication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sutou Kouhei
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mysql2
|
@@ -29,7 +29,8 @@ email:
|
|
29
29
|
- kou@clear-code.com
|
30
30
|
executables:
|
31
31
|
- mysql2-replication-dump
|
32
|
-
extensions:
|
32
|
+
extensions:
|
33
|
+
- ext/mysql2-replication/extconf.rb
|
33
34
|
extra_rdoc_files: []
|
34
35
|
files:
|
35
36
|
- Gemfile
|
@@ -37,12 +38,14 @@ files:
|
|
37
38
|
- README.md
|
38
39
|
- Rakefile
|
39
40
|
- bin/mysql2-replication-dump
|
41
|
+
- ext/mysql2-replication/extconf.rb
|
42
|
+
- ext/mysql2-replication/mysql2_replication.c
|
40
43
|
- lib/mysql2-replication.rb
|
41
44
|
- lib/mysql2-replication/version.rb
|
42
45
|
- mysql2-replication.gemspec
|
43
46
|
homepage: https://github.com/groonga/mysql2-replication
|
44
47
|
licenses:
|
45
|
-
-
|
48
|
+
- MIT
|
46
49
|
metadata: {}
|
47
50
|
post_install_message:
|
48
51
|
rdoc_options: []
|