h8 0.0.1

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: 342d8b09078eb9d8601e80c49e49550eb3d179d8
4
+ data.tar.gz: bf0f41dc3286c9f67a04266083cc385142dcc2ce
5
+ SHA512:
6
+ metadata.gz: 66763287432f0694d92ec467f0b96c986d528ba58321b16674200e7c1815d4f39a1ca6bdb2cab986f7e2de822359d42391458a27c8295d46ac35943383915b67
7
+ data.tar.gz: 3ec3557325aece0f43ccedc11cf1475ef867fe6b15a508f256328fcc6ecdb0e1837565c4129b78439a69a7a19f41d8f22e4b1746d6ab4652cfc58e5f8750bcaa
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in h8.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 sergeych
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Hybrid8
2
+
3
+ _Warning_ this gem is not yet functional. Please do not try to use until versions >= 0.1.0!
4
+
5
+ Therubyracer gem alternative to work with ruby 2.1+ in multithreaded environment.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'hybrid8'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install hybrid8
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/hybrid8/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/ext/h8/extconf.rb ADDED
@@ -0,0 +1,62 @@
1
+ # TTCrypt thrift cryptoutuls package
2
+ # Copyright (C) 2014 by Thrift.
3
+ #
4
+ # This program is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
+
17
+ require "mkmf"
18
+
19
+
20
+ abort 'missing malloc()' unless have_func 'malloc'
21
+ abort 'missing free()' unless have_func 'free'
22
+
23
+ # Give it a name
24
+ extension_name = 'hybrid8'
25
+
26
+
27
+ dir_config(extension_name)
28
+ ok = true
29
+
30
+ # unless have_header('gmp.h')
31
+ # $stderr.puts "can't find gmp.h, try --with-gmp-include=<path>"
32
+ # ok = false
33
+ # end
34
+ #
35
+ # unless have_library('gmp', '__gmpz_init')
36
+ # $stderr.puts "can't find -lgmp, try --with-gmp-lib=<path>"
37
+ # ok = false
38
+ # end
39
+
40
+
41
+ # This test is actually due to a Clang 3.3 shortcoming, included in OS X 10.9,
42
+ # fixed in Clang 3.4:
43
+ # http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html#new-compiler-flags
44
+ if try_compile('', '-O6')
45
+ $CFLAGS += ' -Wall -W -O6 -g'
46
+ else
47
+ $CFLAGS += ' -Wall -W -O3 -g'
48
+ end
49
+
50
+ CONFIG['CXXFLAGS'] += " --std=c++11"
51
+
52
+ if ok
53
+ create_makefile(extension_name)
54
+ else
55
+ $stderr.puts "*********************************************************************"
56
+ $stderr.puts "Your compiler was unable to link to all necessary libraries"
57
+ $stderr.puts "Please install all prerequisites first"
58
+ $stderr.puts "*********************************************************************"
59
+
60
+ raise "Unable to build, correct above errors and rerun"
61
+ end
62
+
data/hybrid8.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'h8/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "h8"
8
+ spec.version = H8::VERSION
9
+ spec.authors = ["sergeych"]
10
+ spec.email = ["sergeych"]
11
+ spec.summary = %q{Minimalistic and sane v8 bindings}
12
+ spec.description = %q{Should be more or less replacement for broken therubyracer gem and riny 2.1+ }
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_dependency 'libv8'
25
+ end
data/lib/h8/version.rb ADDED
@@ -0,0 +1,3 @@
1
+ module H8
2
+ VERSION = "0.0.1"
3
+ end
data/lib/hybrid8.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "h8/version"
2
+
3
+ module H8
4
+ # Your code goes here...
5
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: h8
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - sergeych
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: libv8
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: 'Should be more or less replacement for broken therubyracer gem and riny
56
+ 2.1+ '
57
+ email:
58
+ - sergeych
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - ext/h8/extconf.rb
69
+ - hybrid8.gemspec
70
+ - lib/h8/version.rb
71
+ - lib/hybrid8.rb
72
+ homepage: ''
73
+ licenses:
74
+ - MIT
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.2.2
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Minimalistic and sane v8 bindings
96
+ test_files: []