levitation 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/levitation.gemspec +17 -0
- data/lib/levitation.rb +5 -0
- data/lib/levitation/version.rb +3 -0
- metadata +56 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
Levitation
|
2
|
+
=========================
|
3
|
+
|
4
|
+
Paranormal levitation for your app.
|
5
|
+
|
6
|
+
Installation
|
7
|
+
=========================
|
8
|
+
|
9
|
+
In your Gemfile
|
10
|
+
|
11
|
+
```
|
12
|
+
gem 'levitation'
|
13
|
+
```
|
14
|
+
|
15
|
+
```
|
16
|
+
$ bundle install
|
17
|
+
```
|
18
|
+
|
19
|
+
Usage
|
20
|
+
=========================
|
21
|
+
|
22
|
+
|
23
|
+
Todo
|
24
|
+
======
|
25
|
+
|
26
|
+
|
27
|
+
License
|
28
|
+
========
|
29
|
+
|
30
|
+
Copyright (c) 2011 Peter Gumeson and James Miller
|
31
|
+
See [LICENSE](https://github.com/sporkd/levitaiton/blob/master/LICENSE) for full license.
|
data/Rakefile
ADDED
data/levitation.gemspec
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/levitation/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Peter Gumeson", "James Miller"]
|
6
|
+
gem.email = ["gumeson@gmail.com", "bensie@gmail.com"]
|
7
|
+
gem.description = %q{Ruby library for Levitation}
|
8
|
+
gem.summary = %q{Perform levitation. Impress your friends.}
|
9
|
+
gem.homepage = "https://github.com/sporkd/levitation"
|
10
|
+
|
11
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
12
|
+
gem.files = `git ls-files`.split("\n")
|
13
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
14
|
+
gem.name = "levitation"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Levitation::VERSION
|
17
|
+
end
|
data/lib/levitation.rb
ADDED
metadata
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: levitation
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Peter Gumeson
|
9
|
+
- James Miller
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2011-11-01 00:00:00.000000000 -07:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
description: Ruby library for Levitation
|
17
|
+
email:
|
18
|
+
- gumeson@gmail.com
|
19
|
+
- bensie@gmail.com
|
20
|
+
executables: []
|
21
|
+
extensions: []
|
22
|
+
extra_rdoc_files: []
|
23
|
+
files:
|
24
|
+
- .gitignore
|
25
|
+
- Gemfile
|
26
|
+
- README.md
|
27
|
+
- Rakefile
|
28
|
+
- levitation.gemspec
|
29
|
+
- lib/levitation.rb
|
30
|
+
- lib/levitation/version.rb
|
31
|
+
has_rdoc: true
|
32
|
+
homepage: https://github.com/sporkd/levitation
|
33
|
+
licenses: []
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
require_paths:
|
37
|
+
- lib
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
46
|
+
requirements:
|
47
|
+
- - ! '>='
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
requirements: []
|
51
|
+
rubyforge_project:
|
52
|
+
rubygems_version: 1.6.2
|
53
|
+
signing_key:
|
54
|
+
specification_version: 3
|
55
|
+
summary: Perform levitation. Impress your friends.
|
56
|
+
test_files: []
|