Skip to content

Commit

Permalink
Adding gem skeleton, so this should be installable in a more straight…
Browse files Browse the repository at this point in the history
…forward fashion.
  • Loading branch information
jasedit committed Feb 22, 2012
1 parent 3c68d97 commit 446133e
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in ripple.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "bundler/gem_tasks"
1 change: 1 addition & 0 deletions lib/ripple.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'ripple/base'
File renamed without changes.
3 changes: 3 additions & 0 deletions lib/ripple/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Ripple
VERSION = "0.0.1"
end
Binary file added pkg/ripple-0.0.1.gem
Binary file not shown.
22 changes: 22 additions & 0 deletions ripple.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "lib/ripple/version"

Gem::Specification.new do |s|
s.name = "ripple"
s.version = Ripple::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jason Ziglar"]
s.email = ["jasedit@catexia.com"]
s.homepage = ""
s.summary = %q{Dropbox interface for jekyll.}
s.description = %q{A gem providing a Dropbox syncing interface for jekyll, along with a cgi file to update jekyll.}

s.add_runtime_dependency "jekyll"
s.add_runtime_dependency "dropbox-sdk"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

0 comments on commit 446133e

Please sign in to comment.