mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Promote syslog to default gems
This commit is contained in:
parent
cf76a4a5c2
commit
867204c4a5
4 changed files with 36 additions and 3 deletions
|
@ -89,8 +89,6 @@ Zachary Scott (zzak)
|
||||||
[ext/socket]
|
[ext/socket]
|
||||||
* Tanaka Akira (akr)
|
* Tanaka Akira (akr)
|
||||||
* API change needs matz's approval
|
* API change needs matz's approval
|
||||||
[ext/syslog]
|
|
||||||
Akinori MUSHA (knu)
|
|
||||||
[ext/win32]
|
[ext/win32]
|
||||||
NAKAMURA Usaku (usa)
|
NAKAMURA Usaku (usa)
|
||||||
[ext/win32ole]
|
[ext/win32ole]
|
||||||
|
@ -348,6 +346,9 @@ Zachary Scott (zzak)
|
||||||
Kouhei Sutou (kou)
|
Kouhei Sutou (kou)
|
||||||
https://github.com/ruby/strscan
|
https://github.com/ruby/strscan
|
||||||
https://rubygems.org/gems/strscan
|
https://rubygems.org/gems/strscan
|
||||||
|
[ext/syslog]
|
||||||
|
Akinori MUSHA (knu)
|
||||||
|
https://github.com/ruby/syslog
|
||||||
[ext/zlib]
|
[ext/zlib]
|
||||||
NARUSE, Yui (naruse)
|
NARUSE, Yui (naruse)
|
||||||
https://github.com/ruby/zlib
|
https://github.com/ruby/zlib
|
||||||
|
|
|
@ -32,7 +32,6 @@ Pathname:: Representation of the name of a file or directory on the filesystem
|
||||||
PTY:: Creates and manages pseudo terminals
|
PTY:: Creates and manages pseudo terminals
|
||||||
Ripper:: Provides an interface for parsing Ruby programs into S-expressions
|
Ripper:: Provides an interface for parsing Ruby programs into S-expressions
|
||||||
Socket:: Access underlying OS socket implementations
|
Socket:: Access underlying OS socket implementations
|
||||||
Syslog:: Ruby interface for the POSIX system logging facility
|
|
||||||
WIN32OLE:: Provides an interface for OLE Automation in Ruby
|
WIN32OLE:: Provides an interface for OLE Automation in Ruby
|
||||||
|
|
||||||
= Default gems
|
= Default gems
|
||||||
|
@ -103,6 +102,7 @@ Psych:: A YAML parser and emitter for Ruby
|
||||||
Readline:: Provides an interface for GNU Readline and Edit Line (libedit)
|
Readline:: Provides an interface for GNU Readline and Edit Line (libedit)
|
||||||
StringIO:: Pseudo I/O on String objects
|
StringIO:: Pseudo I/O on String objects
|
||||||
StringScanner:: Provides lexical scanning operations on a String
|
StringScanner:: Provides lexical scanning operations on a String
|
||||||
|
Syslog:: Ruby interface for the POSIX system logging facility
|
||||||
Zlib:: Ruby interface for the zlib compression/decompression library
|
Zlib:: Ruby interface for the zlib compression/decompression library
|
||||||
|
|
||||||
= Bundled gems
|
= Bundled gems
|
||||||
|
|
23
ext/syslog/syslog.gemspec
Normal file
23
ext/syslog/syslog.gemspec
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
Gem::Specification.new do |spec|
|
||||||
|
spec.name = "syslog"
|
||||||
|
spec.version = "0.1.0"
|
||||||
|
spec.authors = ["Akinori MUSHA"]
|
||||||
|
spec.email = ["knu@idaemons.org"]
|
||||||
|
|
||||||
|
spec.summary = %q{Ruby interface for the POSIX system logging facility.}
|
||||||
|
spec.description = %q{Ruby interface for the POSIX system logging facility.}
|
||||||
|
spec.homepage = "https://github.com/ruby/syslog"
|
||||||
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
||||||
|
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
||||||
|
|
||||||
|
spec.metadata["homepage_uri"] = spec.homepage
|
||||||
|
spec.metadata["source_code_uri"] = spec.homepage
|
||||||
|
|
||||||
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
||||||
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
||||||
|
end
|
||||||
|
spec.extensions = ["ext/syslog/extconf.rb"]
|
||||||
|
spec.bindir = "exe"
|
||||||
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||||
|
spec.require_paths = ["lib"]
|
||||||
|
end
|
|
@ -71,6 +71,7 @@ REPOSITORIES = {
|
||||||
abbrev: "ruby/abbrev",
|
abbrev: "ruby/abbrev",
|
||||||
shellwords: "ruby/shellwords",
|
shellwords: "ruby/shellwords",
|
||||||
base64: "ruby/base64",
|
base64: "ruby/base64",
|
||||||
|
syslog: "ruby/syslog",
|
||||||
}
|
}
|
||||||
|
|
||||||
def sync_default_gems(gem)
|
def sync_default_gems(gem)
|
||||||
|
@ -283,6 +284,14 @@ def sync_default_gems(gem)
|
||||||
cp_r("#{upstream}/test/nkf", "test")
|
cp_r("#{upstream}/test/nkf", "test")
|
||||||
cp_r("#{upstream}/nkf.gemspec", "ext/nkf")
|
cp_r("#{upstream}/nkf.gemspec", "ext/nkf")
|
||||||
`git checkout ext/nkf/depend`
|
`git checkout ext/nkf/depend`
|
||||||
|
when "syslog"
|
||||||
|
rm_rf(%w[ext/syslog test/syslog test/test_syslog.rb])
|
||||||
|
cp_r("#{upstream}/ext/syslog", "ext")
|
||||||
|
cp_r("#{upstream}/lib", "ext/syslog")
|
||||||
|
cp_r("#{upstream}/test/syslog", "test")
|
||||||
|
cp_r("#{upstream}/test/test_syslog.rb", "test")
|
||||||
|
cp_r("#{upstream}/syslog.gemspec", "ext/syslog")
|
||||||
|
`git checkout ext/syslog/depend`
|
||||||
else
|
else
|
||||||
sync_lib gem
|
sync_lib gem
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue