infraruby-dev 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +31 -0
- data/infraruby-dev.gemspec +16 -0
- metadata +101 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: eaed08c831182c32ceaeb714ed2a505538b54311
|
4
|
+
data.tar.gz: eaad7369bd470e7c0e57cc93f44a81f9ec3d47cc
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c4a75902b82e233bc9ba97a718796f67dd093fad35940a0c490cc3b0c5990810c7bfe1d7f6a912cc204d15cc5e63e8774e34deacb4f79050b9490df337f713fb
|
7
|
+
data.tar.gz: df4dce0eb2a72e19c258fcf62ed46156d364a4a0bba9a80b3f269ad1820862162262a9fb9580431ed90d046f07e87f79061203f4a2e4de886b77a4d12311a9a2
|
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
InfraRuby
|
2
|
+
=========
|
3
|
+
|
4
|
+
InfraRuby is a compiler and runtime for statically typed Ruby.
|
5
|
+
|
6
|
+
The compiler requires annotations for field types and method signatures, and supports blocks, mixins, primitive types with autoboxing, generic types with bounded wildcards and type argument inference, and local type inference with autocasting.
|
7
|
+
|
8
|
+
The runtime implements selected methods from core classes Array, Bignum, Comparable, Dir, Encoding, Enumerable, Enumerator, Exception, File, Fixnum, Float, Hash, Integer, IO, Kernel, MatchData, Math, Mutex, Numeric, Object, Process, Random, Range, Regexp, String, Symbol, Thread; and standard library packages base64, benchmark, date, digest, json, net/http, pathname, set, socket, stringio, thread, time, uri.
|
9
|
+
|
10
|
+
|
11
|
+
Example
|
12
|
+
-------
|
13
|
+
|
14
|
+
infraruby-init hello
|
15
|
+
cd hello
|
16
|
+
bundle install
|
17
|
+
rake --tasks
|
18
|
+
rake library:core:compile
|
19
|
+
rake program:hello-main:core:compile
|
20
|
+
rake program:hello-main:core:execute
|
21
|
+
|
22
|
+
|
23
|
+
Support
|
24
|
+
-------
|
25
|
+
|
26
|
+
InfraRuby Vision
|
27
|
+
rubygems@infraruby.com
|
28
|
+
|
29
|
+
http://infraruby.com/
|
30
|
+
https://github.com/InfraRuby
|
31
|
+
https://twitter.com/InfraRuby
|
@@ -0,0 +1,16 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.platform = "ruby"
|
3
|
+
s.name = "infraruby-dev"
|
4
|
+
s.version = "3.7.0"
|
5
|
+
s.licenses = ["MIT"]
|
6
|
+
s.author = "InfraRuby Vision"
|
7
|
+
s.email = "rubygems@infraruby.com"
|
8
|
+
s.homepage = "http://infraruby.com/"
|
9
|
+
s.summary = "InfraRuby statically typed Ruby core"
|
10
|
+
s.description = "InfraRuby statically typed Ruby core"
|
11
|
+
s.files = Dir["**/*"]
|
12
|
+
s.add_runtime_dependency "infraruby-base", "~> 3.7"
|
13
|
+
s.add_runtime_dependency "infraruby-core", "~> 3.7"
|
14
|
+
s.add_runtime_dependency "infraruby-init", "~> 3.7"
|
15
|
+
s.add_runtime_dependency "infraruby-task", "~> 3.7"
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: infraruby-dev
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.7.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- InfraRuby Vision
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-05-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: infraruby-base
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.7'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: infraruby-core
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.7'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: infraruby-init
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.7'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: infraruby-task
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.7'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.7'
|
69
|
+
description: InfraRuby statically typed Ruby core
|
70
|
+
email: rubygems@infraruby.com
|
71
|
+
executables: []
|
72
|
+
extensions: []
|
73
|
+
extra_rdoc_files: []
|
74
|
+
files:
|
75
|
+
- README.md
|
76
|
+
- infraruby-dev.gemspec
|
77
|
+
homepage: http://infraruby.com/
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.2.2
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: InfraRuby statically typed Ruby core
|
101
|
+
test_files: []
|