levitation 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
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
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'http://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in levitation.gemspec
4
+ gemspec
@@ -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.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -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
@@ -0,0 +1,5 @@
1
+ require "levitation/version"
2
+
3
+ module Levitation
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Levitation
2
+ VERSION = "0.0.0"
3
+ end
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: []