Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Cooke committed Apr 29, 2014
1 parent ce8b1ec commit a4a3a5b
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 11 deletions.
10 changes: 1 addition & 9 deletions Gemfile
@@ -1,10 +1,2 @@
source "https://rubygems.org"
gem 'json'
gem 'rack'

group :test do
gem 'rake', '~> 10.3.1'
gem 'test-unit', '~> 2.5.5'
gem 'rack-test'
gem 'yard', '~> 0.8.7'
end
gemspec
10 changes: 8 additions & 2 deletions Gemfile.lock
@@ -1,3 +1,10 @@
PATH
remote: .
specs:
moonrope (0.0.0)
json (~> 1.8.1)
rack (~> 1.5.0)

GEM
remote: https://rubygems.org/
specs:
Expand All @@ -13,8 +20,7 @@ PLATFORMS
ruby

DEPENDENCIES
json
rack
moonrope!
rack-test
rake (~> 10.3.1)
test-unit (~> 2.5.5)
Expand Down
20 changes: 20 additions & 0 deletions MIT-LICENCE
@@ -0,0 +1,20 @@
Copyright 2014 Adam Cooke.

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.
20 changes: 20 additions & 0 deletions moonrope.gemspec
@@ -0,0 +1,20 @@
$:.push File.expand_path("../lib", __FILE__)

require "moonrope/version"

Gem::Specification.new do |s|
s.name = "moonrope"
s.version = Moonrope::VERSION
s.authors = ["Adam Cooke"]
s.email = ["adam@viaduct.io"]
s.homepage = "http://viaduct.io"
s.summary = "An API server DSL."
s.description = "A full library allowing you to create sexy DSLs to define your RPC-like APIs."
s.files = Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "json", "~> 1.8.1"
s.add_dependency "rack", "~> 1.5.0"
s.add_development_dependency "rake", '~> 10.3.1'
s.add_development_dependency "test-unit", '~> 2.5.5'
s.add_development_dependency 'yard', '~> 0.8.7'
s.add_development_dependency "rack-test"
end

0 comments on commit a4a3a5b

Please sign in to comment.