Skip to content

Commit

Permalink
gem jumping jacks
Browse files Browse the repository at this point in the history
  • Loading branch information
jnewland committed May 2, 2008
1 parent 5d20f2c commit 4df5699
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 0 deletions.
3 changes: 3 additions & 0 deletions History.txt
@@ -0,0 +1,3 @@
= 0.0.1 02/05/2007

* Initial Release
6 changes: 6 additions & 0 deletions Manifest.txt
@@ -0,0 +1,6 @@
bin/god_web
lib/sinatra_http_auth.rb
Rakefile
Manifest.txt
Readme.txt
History.txt
11 changes: 11 additions & 0 deletions Rakefile
@@ -0,0 +1,11 @@
require 'rubygems'
require 'hoe'

Hoe.new('god_web', "0.0.1") do |p|
p.author = "Jesse Newland"
p.email = 'jnewland@gmail.com'
p.summary = p.description = "Sinatra web frontend for God"
p.url = "http://github.com/jnewland/god_web"
p.extra_deps << ['god', '>=0.7.3']
p.extra_deps << ['sinatra', '>=0.2.2']
end
41 changes: 41 additions & 0 deletions Readme.txt
@@ -0,0 +1,41 @@
= god_web

* http://github.com/jnewland/god_web

== DESCRIPTION:

Sinatra web frontend for God

== REQUIREMENTS:

* God
* Sinatra

== INSTALL:

* sudo gem install jnewland-god_web -s http://gems.github.com

== LICENSE:

(The MIT License)

Copyright (c) 2008 Jesse Newland

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 changes: 28 additions & 0 deletions god_web.gemspec
@@ -0,0 +1,28 @@
(in /Users/jnewland/src/god_web)
Gem::Specification.new do |s|
s.name = %q{god_web}
s.version = "0.0.1"

s.specification_version = 2 if s.respond_to? :specification_version=

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jesse Newland"]
s.date = %q{2008-05-02}
s.default_executable = %q{god_web}
s.description = %q{Sinatra web frontend for God}
s.email = %q{jnewland@gmail.com}
s.executables = ["god_web"]
s.extra_rdoc_files = ["Manifest.txt", "Readme.txt", "History.txt"]
s.files = ["bin/god_web", "lib/sinatra_http_auth.rb", "Rakefile", "Manifest.txt", "Readme.txt", "History.txt"]
s.has_rdoc = true
s.homepage = %q{http://github.com/jnewland/god_web}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{god_web}
s.rubygems_version = %q{1.1.0}
s.summary = %q{Sinatra web frontend for God}

s.add_dependency(%q<god>, [">= 0.7.3"])
s.add_dependency(%q<sinatra>, [">= 0.2.2"])
s.add_dependency(%q<hoe>, [">= 1.5.1"])
end

0 comments on commit 4df5699

Please sign in to comment.