wisp 0.1.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.
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +15 -0
- data/Rakefile +2 -0
- data/examples/15puzzle.rb +55 -0
- data/examples/loop.rb +5 -0
- data/examples/mandelbrot.rb +19 -0
- data/examples/thread1.rb +16 -0
- data/examples/thread2.rb +15 -0
- data/lib/wisp.rb +127 -0
- data/public/index.html +31 -0
- data/public/jquery-1.7.2.min.js +4 -0
- data/public/particle.js +200 -0
- data/public/wisp.css +137 -0
- data/public/wisp.js +459 -0
- data/wisp.gemspec +19 -0
- metadata +96 -0
data/wisp.gemspec
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |gem|
|
|
4
|
+
gem.authors = ["hirekoke", "Yusuke Endoh"]
|
|
5
|
+
gem.email = ["hirekoke@yahoo.co.jp", "mame@tsg.ne.jp"]
|
|
6
|
+
gem.description = %q{Ruby extension library for visualizing the line that is currently running}
|
|
7
|
+
gem.summary = gem.description
|
|
8
|
+
gem.homepage = "https://github.com/hirekoke/Wisp"
|
|
9
|
+
|
|
10
|
+
gem.files = `git ls-files`.split($\)
|
|
11
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
12
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
13
|
+
gem.name = "wisp"
|
|
14
|
+
gem.require_paths = ["lib"]
|
|
15
|
+
gem.version = "0.1.0"
|
|
16
|
+
|
|
17
|
+
gem.add_runtime_dependency "sinatra", [">= 1.3.2"]
|
|
18
|
+
gem.add_runtime_dependency "sinatra-websocket", [">= 0.1.2"]
|
|
19
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: wisp
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- hirekoke
|
|
9
|
+
- Yusuke Endoh
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
date: 2012-09-18 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: sinatra
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
none: false
|
|
19
|
+
requirements:
|
|
20
|
+
- - ! '>='
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.3.2
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
27
|
+
requirements:
|
|
28
|
+
- - ! '>='
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
version: 1.3.2
|
|
31
|
+
- !ruby/object:Gem::Dependency
|
|
32
|
+
name: sinatra-websocket
|
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
|
34
|
+
none: false
|
|
35
|
+
requirements:
|
|
36
|
+
- - ! '>='
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: 0.1.2
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ! '>='
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 0.1.2
|
|
47
|
+
description: Ruby extension library for visualizing the line that is currently running
|
|
48
|
+
email:
|
|
49
|
+
- hirekoke@yahoo.co.jp
|
|
50
|
+
- mame@tsg.ne.jp
|
|
51
|
+
executables: []
|
|
52
|
+
extensions: []
|
|
53
|
+
extra_rdoc_files: []
|
|
54
|
+
files:
|
|
55
|
+
- .gitignore
|
|
56
|
+
- Gemfile
|
|
57
|
+
- LICENSE
|
|
58
|
+
- README.md
|
|
59
|
+
- Rakefile
|
|
60
|
+
- examples/15puzzle.rb
|
|
61
|
+
- examples/loop.rb
|
|
62
|
+
- examples/mandelbrot.rb
|
|
63
|
+
- examples/thread1.rb
|
|
64
|
+
- examples/thread2.rb
|
|
65
|
+
- lib/wisp.rb
|
|
66
|
+
- public/index.html
|
|
67
|
+
- public/jquery-1.7.2.min.js
|
|
68
|
+
- public/particle.js
|
|
69
|
+
- public/wisp.css
|
|
70
|
+
- public/wisp.js
|
|
71
|
+
- wisp.gemspec
|
|
72
|
+
homepage: https://github.com/hirekoke/Wisp
|
|
73
|
+
licenses: []
|
|
74
|
+
post_install_message:
|
|
75
|
+
rdoc_options: []
|
|
76
|
+
require_paths:
|
|
77
|
+
- lib
|
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
79
|
+
none: false
|
|
80
|
+
requirements:
|
|
81
|
+
- - ! '>='
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '0'
|
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
|
+
none: false
|
|
86
|
+
requirements:
|
|
87
|
+
- - ! '>='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
requirements: []
|
|
91
|
+
rubyforge_project:
|
|
92
|
+
rubygems_version: 1.8.23
|
|
93
|
+
signing_key:
|
|
94
|
+
specification_version: 3
|
|
95
|
+
summary: Ruby extension library for visualizing the line that is currently running
|
|
96
|
+
test_files: []
|