rusty_camel 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f145119911ba5bc98ca1bc74d464c1279927f98e
4
+ data.tar.gz: 3579303bc43e675a93f96c189987cd40161244fa
5
+ SHA512:
6
+ metadata.gz: 615afb25e16df98961bdcc6a7774a0081141059fbb7d3bd233ec3e39eeed6d1690aa937bee2334d23bc1ee4069801b9f901111f24733f99b3335c157c01ac2d3
7
+ data.tar.gz: bfe1d4c8436540d9be59c80e85e38d35b8544981719c28af70569d27c0917329eb09755051fa6e64f91e166ec6cc910b4020da714035e2549fa00c40fd786798
data/Cargo.lock ADDED
@@ -0,0 +1,47 @@
1
+ [root]
2
+ name = "rusty_camel"
3
+ version = "0.1.0"
4
+ dependencies = [
5
+ "helix 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
6
+ ]
7
+
8
+ [[package]]
9
+ name = "cslice"
10
+ version = "0.2.0"
11
+ source = "registry+https://github.com/rust-lang/crates.io-index"
12
+
13
+ [[package]]
14
+ name = "cstr-macro"
15
+ version = "0.1.0"
16
+ source = "registry+https://github.com/rust-lang/crates.io-index"
17
+
18
+ [[package]]
19
+ name = "helix"
20
+ version = "0.5.0"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ dependencies = [
23
+ "cslice 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
24
+ "cstr-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
25
+ "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
26
+ "libcruby-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "libc"
31
+ version = "0.2.22"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+
34
+ [[package]]
35
+ name = "libcruby-sys"
36
+ version = "0.5.0"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ dependencies = [
39
+ "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
40
+ ]
41
+
42
+ [metadata]
43
+ "checksum cslice 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "697c714f50560202b1f4e2e09cd50a421881c83e9025db75d15f276616f04f40"
44
+ "checksum cstr-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db53fddba18cdd35477a7213a3ef6acfbfa333c31b42ce019e544c4a1420a06f"
45
+ "checksum helix 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4e4a47b16ffda8d734cc35a314121de5b5c665acf7129eafc410639cdeda1732"
46
+ "checksum libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)" = "babb8281da88cba992fa1f4ddec7d63ed96280a1a53ec9b919fd37b53d71e502"
47
+ "checksum libcruby-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8828a85065ebe12f4847428346b99f4d5a30660d20fc97de9aa34e01d7a02c50"
data/Cargo.toml ADDED
@@ -0,0 +1,9 @@
1
+ [package]
2
+ name = "rusty_camel"
3
+ version = "0.1.0"
4
+
5
+ [lib]
6
+ crate-type = ["cdylib"]
7
+
8
+ [dependencies]
9
+ helix = "0.5.0"
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
+ rusty_camel (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
+ rusty_camel!
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'
Binary file
@@ -0,0 +1,9 @@
1
+ require "helix_runtime"
2
+
3
+ RubyString = String
4
+
5
+ begin
6
+ require "rusty_camel/native"
7
+ rescue LoadError
8
+ warn "Unable to load rusty_camel/native. Please run `rake build`"
9
+ end
@@ -0,0 +1,5 @@
1
+ require 'helix_runtime/build_task'
2
+
3
+ HelixRuntime::BuildTask.new("rusty_camel")
4
+
5
+ task :default => :build
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rusty_camel
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Squiidz
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/rusty_camel.rb
39
+ - lib/rusty_camel/native.bundle
40
+ - lib/tasks/helix_runtime.rake
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: Snake to Camel case
64
+ test_files: []