Skip to content

Commit

Permalink
update gemspec and license
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskite committed Jul 19, 2011
1 parent 319b53e commit 8fcce43
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
17 changes: 17 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,17 @@
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.
26 changes: 26 additions & 0 deletions jimson.gemspec
@@ -0,0 +1,26 @@
spec = Gem::Specification.new do |s|
s.name = "jimson"
s.version = "0.1.0"
s.author = "Chris Kite"
s.homepage = "http://www.github.com/chriskite/jimson"
s.platform = Gem::Platform::RUBY
s.summary = "JSON-RPC 2.0 client and server"
s.require_path = "lib"
s.has_rdoc = false
#s.rdoc_options << '-m' << 'README.rdoc' << '-t' << 'Jimson'
s.extra_rdoc_files = ["README.rdoc"]
s.add_dependency("patron", ">= 0.4.12")
s.add_dependency("eventmachine", ">= 0.12.10")
s.add_dependency("eventmachine_httpserver", ">= 0.2.1")
s.add_dependency("json", ">= 1.5.1")

s.files = %w[
VERSION
LICENSE.txt
CHANGELOG.rdoc
README.rdoc
Rakefile
] + Dir['lib/**/*.rb']

s.test_files = Dir['spec/*.rb']
end

0 comments on commit 8fcce43

Please sign in to comment.