Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
djcas9 committed Apr 4, 2011
0 parents commit b9e4074
Show file tree
Hide file tree
Showing 14 changed files with 140 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .document
@@ -0,0 +1,3 @@
-
ChangeLog.*
LICENSE.txt
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
doc/
pkg/
1 change: 1 addition & 0 deletions .rspec
@@ -0,0 +1 @@
--colour --format documentation
1 change: 1 addition & 0 deletions .yardopts
@@ -0,0 +1 @@
--markup rdoc --title "pidly Documentation" --protected
4 changes: 4 additions & 0 deletions ChangeLog.rdoc
@@ -0,0 +1,4 @@
=== 0.1.0 / 2011-04-04

* Initial release:

20 changes: 20 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,20 @@
Copyright (c) 2011 dustinwebber

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 README.rdoc
@@ -0,0 +1,26 @@
= pidly

* {Homepage}[http://rubygems.org/gems/pidly]
* {Documentation}[http://rubydoc.info/gems/pidly/frames]

== Description

TODO: Description

== Features

== Examples

require 'pidly'

== Requirements

== Install

$ gem install pidly

== Copyright

Copyright (c) 2011 dustinwebber

See LICENSE.txt for details.
38 changes: 38 additions & 0 deletions Rakefile
@@ -0,0 +1,38 @@
require 'rubygems'
require 'rake'

begin
gem 'ore-tasks', '~> 0.4'
require 'ore/tasks'

Ore::Tasks.new
rescue LoadError => e
STDERR.puts e.message
STDERR.puts "Run `gem install ore-tasks` to install 'ore/tasks'."
end

begin
gem 'rspec', '~> 2.4'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new
rescue LoadError => e
task :spec do
abort "Please run `gem install rspec` to install RSpec."
end
end

task :test => :spec
task :default => :spec

begin
gem 'yard', '~> 0.6.0'
require 'yard'

YARD::Rake::YardocTask.new
rescue LoadError => e
task :yard do
abort "Please run `gem install yard` to install YARD."
end
end
task :doc => :yard
12 changes: 12 additions & 0 deletions gemspec.yml
@@ -0,0 +1,12 @@
name: pidly
summary: "TODO: Summary"
description: "TODO: Description"
license: MIT
authors: dustinwebber
homepage: http://rubygems.org/gems/pidly
has_yard: true

development_dependencies:
ore-tasks: ~> 0.4
rspec: ~> 2.4
yard: ~> 0.6.0
1 change: 1 addition & 0 deletions lib/pidly.rb
@@ -0,0 +1 @@
require 'pidly/version'
4 changes: 4 additions & 0 deletions lib/pidly/version.rb
@@ -0,0 +1,4 @@
module Pidly
# pidly version
VERSION = "0.1.0"
end
15 changes: 15 additions & 0 deletions pidly.gemspec
@@ -0,0 +1,15 @@
# -*- encoding: utf-8 -*-

begin
Ore::Specification.new do |gemspec|
# custom logic here
end
rescue NameError
begin
require 'ore/specification'
retry
rescue LoadError
STDERR.puts "The '#{__FILE__}' file requires Ore."
STDERR.puts "Run `gem install ore-core` to install Ore."
end
end
8 changes: 8 additions & 0 deletions spec/pidly_spec.rb
@@ -0,0 +1,8 @@
require 'spec_helper'
require 'pidly'

describe Pidly do
it "should have a VERSION constant" do
subject.const_get('VERSION').should_not be_empty
end
end
5 changes: 5 additions & 0 deletions spec/spec_helper.rb
@@ -0,0 +1,5 @@
gem 'rspec', '~> 2.4'
require 'rspec'
require 'pidly/version'

include Pidly

0 comments on commit b9e4074

Please sign in to comment.