yarderize 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 55533a199a1e0954021ec0250179a4e710fe9164
4
+ data.tar.gz: 7c8c0783c785c88f097c992a7d62ba82fc894523
5
+ SHA512:
6
+ metadata.gz: ee151348461d5971abcc71b19f5877f2438e2f8c6b0f032ea1c6c9adea082ab271563ea0cc59259da3280378cba18b51e73b272346430f241934b0b267060e41
7
+ data.tar.gz: 0702fc573a42aebaf9a2b08886a8fb07d4df1c0a189dd370e1f88b308131a1dc14f1e425330ed643830ef4dbe8882d7af6a4b310cfb1855f7ea320fe63f3fe45
data/Cargo.lock ADDED
@@ -0,0 +1,54 @@
1
+ [root]
2
+ name = "yard"
3
+ version = "0.1.0"
4
+ dependencies = [
5
+ "helix 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
6
+ "yard 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
7
+ ]
8
+
9
+ [[package]]
10
+ name = "cslice"
11
+ version = "0.2.0"
12
+ source = "registry+https://github.com/rust-lang/crates.io-index"
13
+
14
+ [[package]]
15
+ name = "cstr-macro"
16
+ version = "0.1.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+
19
+ [[package]]
20
+ name = "helix"
21
+ version = "0.5.0"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ dependencies = [
24
+ "cslice 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
25
+ "cstr-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
26
+ "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
27
+ "libcruby-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
28
+ ]
29
+
30
+ [[package]]
31
+ name = "libc"
32
+ version = "0.2.22"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+
35
+ [[package]]
36
+ name = "libcruby-sys"
37
+ version = "0.5.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ dependencies = [
40
+ "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "yard"
45
+ version = "0.2.5"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+
48
+ [metadata]
49
+ "checksum cslice 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "697c714f50560202b1f4e2e09cd50a421881c83e9025db75d15f276616f04f40"
50
+ "checksum cstr-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db53fddba18cdd35477a7213a3ef6acfbfa333c31b42ce019e544c4a1420a06f"
51
+ "checksum helix 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4e4a47b16ffda8d734cc35a314121de5b5c665acf7129eafc410639cdeda1732"
52
+ "checksum libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)" = "babb8281da88cba992fa1f4ddec7d63ed96280a1a53ec9b919fd37b53d71e502"
53
+ "checksum libcruby-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8828a85065ebe12f4847428346b99f4d5a30660d20fc97de9aa34e01d7a02c50"
54
+ "checksum yard 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b83f2fdc726767f7b1cd4f1386d7259d002b09856e751e5b39ec8c01e3421469"
data/Cargo.toml ADDED
@@ -0,0 +1,10 @@
1
+ [package]
2
+ name = "yard"
3
+ version = "0.1.0"
4
+
5
+ [lib]
6
+ crate-type = ["cdylib"]
7
+
8
+ [dependencies]
9
+ helix = "0.5.0"
10
+ yard = "0.2.5"
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,23 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ yard (1.0.0)
5
+ helix_runtime (~> 0.5.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ helix_runtime (0.5.0)
11
+ rake (>= 10.0)
12
+ thor (~> 0.19.4)
13
+ rake (12.0.0)
14
+ thor (0.19.4)
15
+
16
+ PLATFORMS
17
+ ruby
18
+
19
+ DEPENDENCIES
20
+ yard!
21
+
22
+ BUNDLED WITH
23
+ 1.14.6
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler/setup'
2
+ import 'lib/tasks/helix_runtime.rake'
@@ -0,0 +1,5 @@
1
+ require 'helix_runtime/build_task'
2
+
3
+ HelixRuntime::BuildTask.new("yard")
4
+
5
+ task :default => :build
Binary file
data/lib/yard.rb ADDED
@@ -0,0 +1,9 @@
1
+ require "helix_runtime"
2
+
3
+ RubyString = String
4
+
5
+ begin
6
+ require "yard/native"
7
+ rescue LoadError
8
+ warn "Unable to load yard/native. Please run `rake build`"
9
+ end
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yarderize
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Ruby Developer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-05-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: helix_runtime
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.5.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.5.0
27
+ description:
28
+ email:
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - Cargo.lock
34
+ - Cargo.toml
35
+ - Gemfile
36
+ - Gemfile.lock
37
+ - Rakefile
38
+ - lib/tasks/helix_runtime.rake
39
+ - lib/yard.rb
40
+ - lib/yard/native.bundle
41
+ homepage:
42
+ licenses: []
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 2.5.2
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: A Helix project
64
+ test_files: []