zerone 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a70790a3a55dd5541334ddcc2af674567b54c91e
4
+ data.tar.gz: 42b80be1e07b0949eea474df1a0e489de4812c46
5
+ SHA512:
6
+ metadata.gz: f868ed09c6ba29feadd77f0e96107728b2d3c51dd59fa124b29d47d13126c3cfae18a2218c1efd425a02d8680bef7ca7e827fc786ff5f36a5089cdf4bf0dfc60
7
+ data.tar.gz: e91141182269884bf3828604cda6bdf76621c5c1cce9edba30ffbd913d10d86e57fc3373faf6131bcfcbda1109e8570667f90bb86cfd81c66f3517db4de6ce25
@@ -0,0 +1,4 @@
1
+ *.log
2
+ .DS_Store
3
+ Gemfile.lock
4
+ pkg/*
data/.rspec ADDED
@@ -0,0 +1,5 @@
1
+ --color
2
+ --format documentation
3
+ --order random
4
+ --warnings
5
+ --require helper
@@ -0,0 +1,19 @@
1
+ script: rake ci
2
+
3
+ language: ruby
4
+
5
+ rvm:
6
+ - 2.2.2
7
+ - rbx-head
8
+ - ruby-head
9
+ - jruby-head
10
+
11
+ matrix:
12
+ fast_finish: true
13
+ allow_failures:
14
+ - rvm: rbx-head
15
+ - rvm: ruby-head
16
+ - rvm: jruby-head
17
+
18
+ sudo: false
19
+ install: bundle install --without=development
@@ -0,0 +1,4 @@
1
+ # Changelog ^01E
2
+
3
+ * 0.0:
4
+ * Initial commits.
@@ -0,0 +1 @@
1
+ # Contributing ^01E
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
4
+ gem 'celluloid'
5
+ gem 'celluloid-io'
6
+ gem 'celluloid-zmq'
7
+ gem 'reel'
8
+
9
+ group :development do
10
+ gem 'pry'
11
+ gem 'rake'
12
+ gem 'rspec'
13
+ gem 'rubocop'
14
+ end
@@ -0,0 +1,23 @@
1
+ # License ^01E
2
+
3
+ ## The MIT License (MIT)
4
+
5
+ Copyright (c) 2016 Donovan Keme; digitalextremist //
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
@@ -0,0 +1,4 @@
1
+ # Policies ^01E
2
+
3
+ 0. Monotonic Versioning: http://blog.appliedcompscilab.com/monotonic_versioning_manifesto/
4
+ 0. Every Object will have its own Internet Address ( IPv6 )
@@ -0,0 +1,3 @@
1
+ # Decentrality ^01E
2
+
3
+ > The original transmedia framework.
@@ -0,0 +1,9 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec) do |spec|
5
+ spec.pattern = 'spec/**/*_spec.rb'
6
+ spec.rspec_opts = ['--color --format documentation']
7
+ end
8
+
9
+ task :default => :spec
File without changes
@@ -0,0 +1,3 @@
1
+ module ZOE
2
+ VERSION = '0.0'
3
+ end
File without changes
@@ -0,0 +1,3 @@
1
+ module ZerOnE
2
+ VERSION = '0.0'
3
+ end
@@ -0,0 +1,7 @@
1
+ require 'rspec/core/rake_task'
2
+
3
+ RSpec::Core::RakeTask.new
4
+
5
+ RSpec::Core::RakeTask.new(:rcov) do |task|
6
+ task.rcov = true
7
+ end
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ require File.expand_path("../lib/zerone/version.rb", __FILE__)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = 'zerone'
7
+ gem.version = ZerOnE::VERSION
8
+ gem.platform = Gem::Platform::RUBY
9
+ gem.summary = "Concurrent Decentral Transmedia Framework"
10
+ gem.description = "Concurrent Decentral Transmedia Framework"
11
+ gem.licenses = ['MIT']
12
+
13
+ gem.authors = ["Donovan Keme"]
14
+ gem.email = ['code@extremist.digital']
15
+ gem.homepage = 'https://github.com/digitalextremist/zerone'
16
+
17
+ gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|examples|spec|features)/}) }
18
+ gem.require_path = 'lib'
19
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zerone
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.0'
5
+ platform: ruby
6
+ authors:
7
+ - Donovan Keme
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Concurrent Decentral Transmedia Framework
14
+ email:
15
+ - code@extremist.digital
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - ".rspec"
22
+ - ".travis.yml"
23
+ - CHANGELOG.md
24
+ - CONTRIBUTE.md
25
+ - Gemfile
26
+ - LICENSE.md
27
+ - POLICY.md
28
+ - README.md
29
+ - Rakefile
30
+ - lib/ZOE.rb
31
+ - lib/ZOE/version.rb
32
+ - lib/zerone.rb
33
+ - lib/zerone/version.rb
34
+ - tasks/rspec.rake
35
+ - zerone.gemspec
36
+ homepage: https://github.com/digitalextremist/zerone
37
+ licenses:
38
+ - MIT
39
+ metadata: {}
40
+ post_install_message:
41
+ rdoc_options: []
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ requirements: []
55
+ rubyforge_project:
56
+ rubygems_version: 2.6.2
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: Concurrent Decentral Transmedia Framework
60
+ test_files: []