viz 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +42 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +9 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +20 -0
- data/README.md +13 -0
- data/Rakefile +9 -0
- data/lib/viz.rb +4 -0
- data/lib/viz/version.rb +3 -0
- data/viz.gemspec +21 -0
- metadata +83 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
OWE4NDkzMDI1ZWVmMjZjZDNjNjVhYjcxMDFjNWJjZmUwMzIxNWM5Mw==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
OWJlNTk0MjlkMDdiZGQyZWFlYTAwMWI0NmI4Mjg4YzhkODhjYjZlNQ==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
NWQwMjdkZTRlYTdiMmNkOWQxOWNhNjE5NzYxZjkwNmJhZTc1OTJjMTZlYTE3
|
10
|
+
ZTBkYjYwN2RjNTliY2RmYzlmOTMyMWEyZmFlOWUxYjFhOWRiZWE0NzJlYmM2
|
11
|
+
YTg1OGViYWNiNTQ4YTIyZDVlNWY1ZDJmNjY4OTdkNGE2NDNjODg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NTlmOGFiMjc1NzY2Y2Q0MmQ2MTNhZjlhY2U2NWViNDU5NzY2MjZjZDZlZDNm
|
14
|
+
OWM3NDEzNWUxNjNhOTdiYmMwODg2MmZkYTE3MjljNzcxNzE2MzBlODdkMjE4
|
15
|
+
MjVmNTRiOThmMjEyNDQyNTUwYjAwNGUyZmU5Y2NmY2Y3OWQ5M2Y=
|
data/.gitignore
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
## CI Artifacts
|
2
|
+
Gemfile.ci.lock
|
3
|
+
|
4
|
+
## TEXTMATE
|
5
|
+
*.tmproj
|
6
|
+
tmtags
|
7
|
+
|
8
|
+
## EMACS
|
9
|
+
*~
|
10
|
+
\#*
|
11
|
+
.\#*
|
12
|
+
|
13
|
+
## VIM
|
14
|
+
*.swp
|
15
|
+
|
16
|
+
## PROJECT::GENERAL
|
17
|
+
.yardoc
|
18
|
+
coverage
|
19
|
+
doc
|
20
|
+
log
|
21
|
+
pkg
|
22
|
+
rdoc
|
23
|
+
|
24
|
+
## BUNDLER
|
25
|
+
*.gem
|
26
|
+
.bundle
|
27
|
+
pkg
|
28
|
+
|
29
|
+
## RCOV
|
30
|
+
coverage.data
|
31
|
+
|
32
|
+
## RUBINIUS
|
33
|
+
*.rbc
|
34
|
+
|
35
|
+
## Hoe?
|
36
|
+
.source_index
|
37
|
+
|
38
|
+
# Mac Finder files
|
39
|
+
*.DS_Store
|
40
|
+
|
41
|
+
# Node / NPM
|
42
|
+
node_modules
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
maglev
|
data/CHANGELOG.md
ADDED
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
## Contributing
|
2
|
+
In the spirit of [free software][free-sw], **everyone** is encouraged to help
|
3
|
+
improve this project.
|
4
|
+
|
5
|
+
[free-sw]: http://www.fsf.org/licensing/essays/free-sw.html
|
6
|
+
|
7
|
+
Here are some ways *you* can contribute:
|
8
|
+
|
9
|
+
* by using alpha, beta, and prerelease versions
|
10
|
+
* by reporting bugs
|
11
|
+
* by suggesting new features
|
12
|
+
* by writing or editing documentation
|
13
|
+
* by writing specifications
|
14
|
+
* by writing code ( **no patch is too small**: fix typos, add comments, clean up
|
15
|
+
inconsistent whitespace)
|
16
|
+
* by refactoring code
|
17
|
+
* by closing [issues][]
|
18
|
+
* by reviewing patches
|
19
|
+
|
20
|
+
[issues]: https://github.com/johnnyt/viz/issues
|
21
|
+
|
22
|
+
## Submitting an Issue
|
23
|
+
We use the [GitHub issue tracker][issues] to track bugs and features. Before
|
24
|
+
submitting a bug report or feature request, check to make sure it hasn't
|
25
|
+
already been submitted. When submitting a bug report, please include a [Gist][]
|
26
|
+
that includes a stack trace and any details that may be necessary to reproduce
|
27
|
+
the bug, including your gem version, Ruby version, and operating system.
|
28
|
+
Ideally, a bug report should include a pull request with failing specs.
|
29
|
+
|
30
|
+
[gist]: https://gist.github.com/
|
31
|
+
|
32
|
+
## Submitting a Pull Request
|
33
|
+
1. [Fork the repository.][fork]
|
34
|
+
2. [Create a topic branch.][branch]
|
35
|
+
3. Add specs for your unimplemented feature or bug fix.
|
36
|
+
4. Run `bundle exec rake spec`. If your specs pass, return to step 3.
|
37
|
+
5. Implement your feature or bug fix.
|
38
|
+
6. Run `bundle exec rake spec`. If your specs fail, return to step 5.
|
39
|
+
7. Run `open coverage/index.html`. If your changes are not completely covered
|
40
|
+
by your tests, return to step 3.
|
41
|
+
8. Add, commit, and push your changes.
|
42
|
+
9. [Submit a pull request.][pr]
|
43
|
+
|
44
|
+
[fork]: http://help.github.com/fork-a-repo/
|
45
|
+
[branch]: http://learn.github.com/p/branching.html
|
46
|
+
[pr]: http://help.github.com/send-pull-requests/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2014 JohnnyT
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Viz
|
2
|
+
|
3
|
+
A Sinatra app to vizualize a MagLev environment.
|
4
|
+
|
5
|
+
|
6
|
+
### Contributing
|
7
|
+
|
8
|
+
If you'd like to contribute, that's awesome. There's a guide to contributing
|
9
|
+
(both code and general help) over in [CONTRIBUTING.md](CONTRIBUTING.md)
|
10
|
+
|
11
|
+
### Development
|
12
|
+
|
13
|
+
To see what has changed in recent versions, see the [CHANGELOG.md](CHANGELOG.md).
|
data/Rakefile
ADDED
data/lib/viz.rb
ADDED
data/lib/viz/version.rb
ADDED
data/viz.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path '../lib/viz/version', __FILE__
|
3
|
+
|
4
|
+
$VIZ = Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ['JohnnyT']
|
6
|
+
gem.email = ['ubergeek3141@gmail.com']
|
7
|
+
gem.description = 'Vizualize MagLev'
|
8
|
+
gem.summary = 'Viz provides a Sinatra app to let you see and interact with a MagLev enrionment.'
|
9
|
+
gem.homepage = 'https://github.com/johnnyt/viz'
|
10
|
+
gem.license = 'MIT'
|
11
|
+
|
12
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
13
|
+
gem.files = `git ls-files`.split("\n")
|
14
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
|
+
gem.name = 'viz'
|
16
|
+
gem.require_paths = ['lib']
|
17
|
+
gem.version = Viz::VERSION
|
18
|
+
|
19
|
+
gem.add_dependency 'sinatra', '~> 0'
|
20
|
+
gem.add_development_dependency 'rake', '~> 0'
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: viz
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- JohnnyT
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sinatra
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
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
|
+
description: Vizualize MagLev
|
42
|
+
email:
|
43
|
+
- ubergeek3141@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- .ruby-version
|
50
|
+
- CHANGELOG.md
|
51
|
+
- CONTRIBUTING.md
|
52
|
+
- Gemfile
|
53
|
+
- LICENSE.txt
|
54
|
+
- README.md
|
55
|
+
- Rakefile
|
56
|
+
- lib/viz.rb
|
57
|
+
- lib/viz/version.rb
|
58
|
+
- viz.gemspec
|
59
|
+
homepage: https://github.com/johnnyt/viz
|
60
|
+
licenses:
|
61
|
+
- MIT
|
62
|
+
metadata: {}
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ! '>='
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.2.1
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: Viz provides a Sinatra app to let you see and interact with a MagLev enrionment.
|
83
|
+
test_files: []
|