helix_runtime 0.5.0.alpha.4 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50b9bafba2ef87ce0fe3f30dda364a47803fe18f
4
- data.tar.gz: 7edb3d929a19695353d74211a45bbbd877a108a7
3
+ metadata.gz: b2bfaa4a605254b9794c05a49837c5cb3173baa4
4
+ data.tar.gz: 6276f42f5ff7614841620a51a6ea80590b18c15b
5
5
  SHA512:
6
- metadata.gz: 6a7d7d53eeabfcc257ac846534b9b4ea0e921837d60856db7a639b2771fef3d70d95ddd96d44fd878fa7f0880a0a1e4f9d3ddbca11c9b5bee25a91a0fdc50266
7
- data.tar.gz: 5a6a16da532a666d9b64df4eb67519f7b430c5dfc5f9cc54b2d972ef846a9d0ecc78f16a7ed5d714fa9e4db2f90c5d771ffef0acffc13739dc03c21c61f42dab
6
+ metadata.gz: 55e392c49d0f580949691ac795018381eb88eb0c54d63f663dca5b46fa889a649de8a7ecdc52348a1dfa2a0c206dd7c7350e9d7e38b84111a55dc61cbfdf66ad
7
+ data.tar.gz: cb24298f920517b426d94fc7300e9bdbde285830cb3a1e1c79e5d6dd482e48cf37cf7769a10af2fe11795f70e6ca9d090812c96e0d940f8e96f50c61e95cdf4c
data/.rspec CHANGED
@@ -1,2 +1,2 @@
1
- --format documentation
2
- --color
1
+ --format documentation
2
+ --color
@@ -1,7 +1,7 @@
1
- require "mkmf"
2
-
3
- if RUBY_PLATFORM =~ /mingw/
4
- system "rake native_def_file"
5
- end
6
-
7
- create_makefile "helix_runtime/native"
1
+ require "mkmf"
2
+
3
+ if RUBY_PLATFORM =~ /mingw/
4
+ system "rake native_def_file"
5
+ end
6
+
7
+ create_makefile "helix_runtime/native"
@@ -6,7 +6,7 @@
6
6
  #include <helix_runtime.h>
7
7
 
8
8
  // Update with version.rb
9
- const char* HELIX_RUNTIME_VERSION = "0.5.0-alpha-4";
9
+ const char* HELIX_RUNTIME_VERSION = "0.5.0";
10
10
 
11
11
  const char* HELIX_PRIsVALUE = PRIsVALUE;
12
12
  const char* HELIX_SPRINTF_TO_S = "%" PRIsVALUE;
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["wycats@gmail.com", "godfreykfc@gmail.com"]
11
11
 
12
12
  spec.summary = %q{The Helix Runtime}
13
- spec.homepage = "https://github.com/tildeio/helix"
13
+ spec.homepage = "https://usehelix.com"
14
14
 
15
15
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
16
  spec.bindir = "bin"
@@ -20,7 +20,7 @@ module HelixRuntime
20
20
  end
21
21
 
22
22
  def add_rust_lib_file
23
- copy_file "lib.rs", "#{base_path}/src/lib.rs"
23
+ template "lib.rs", "#{base_path}/src/lib.rs"
24
24
  end
25
25
 
26
26
  def create_gemspec
@@ -4,7 +4,7 @@ extern crate helix;
4
4
  ruby! {
5
5
  class <%= class_name %> {
6
6
  def hello() {
7
- println!("Hello form <%= app_name %>!");
7
+ println!("Hello from <%= app_name %>!");
8
8
  }
9
9
  }
10
10
  }
@@ -9,7 +9,7 @@ module HelixRuntime
9
9
 
10
10
  def projects
11
11
  @projects ||= Dir["#{root}/crates/*"]
12
- .select{|f| File.directory?(f) }
12
+ .select{|f| File.exist?("#{f}/Cargo.toml") }
13
13
  .map{|d| Project.new(d) }
14
14
  end
15
15
 
@@ -1,5 +1,5 @@
1
1
  module HelixRuntime
2
2
  # Also update helix_runtime.c
3
- VERSION = "0.5.0-alpha-4"
3
+ VERSION = "0.5.0"
4
4
  GEM_VERSION = VERSION.gsub("-", ".")
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helix_runtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0.alpha.4
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yehuda Katz
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-04-24 00:00:00.000000000 Z
12
+ date: 2017-04-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -118,7 +118,7 @@ files:
118
118
  - lib/helix_runtime/platform.rb
119
119
  - lib/helix_runtime/project.rb
120
120
  - lib/helix_runtime/version.rb
121
- homepage: https://github.com/tildeio/helix
121
+ homepage: https://usehelix.com
122
122
  licenses: []
123
123
  metadata: {}
124
124
  post_install_message:
@@ -132,12 +132,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
132
132
  version: '0'
133
133
  required_rubygems_version: !ruby/object:Gem::Requirement
134
134
  requirements:
135
- - - ">"
135
+ - - ">="
136
136
  - !ruby/object:Gem::Version
137
- version: 1.3.1
137
+ version: '0'
138
138
  requirements: []
139
139
  rubyforge_project:
140
- rubygems_version: 2.6.11
140
+ rubygems_version: 2.6.8
141
141
  signing_key:
142
142
  specification_version: 4
143
143
  summary: The Helix Runtime