Skip to content

Commit

Permalink
admin: update meta files for using Redfile and such
Browse files Browse the repository at this point in the history
  • Loading branch information
trans committed May 10, 2011
1 parent c49d034 commit f4692ce
Show file tree
Hide file tree
Showing 37 changed files with 161 additions and 160 deletions.
89 changes: 89 additions & 0 deletions .gemspec
@@ -0,0 +1,89 @@
--- !ruby/object:Gem::Specification
name: crypt3
version: !ruby/object:Gem::Version
hash: 21
prerelease: false
segments:
- 1
- 1
- 3
version: 1.1.3
platform: ruby
authors:
- Poul-Henning Kamp
autorequire:
bindir: bin
cert_chain: []

date: 2011-05-10 00:00:00 -04:00
default_executable:
dependencies:
- !ruby/object:Gem::Dependency
name: redline
prerelease: false
requirement: &id001 !ruby/object:Gem::Requirement
none: false
requirements:
- - ">="
- !ruby/object:Gem::Version
hash: 3
segments:
- 0
version: "0"
type: :development
version_requirements: *id001
description: |-
Crypt3 is a ruby version of crypt(3),
a salted one-way hashing of a password.
email: transfire@gmail.com
executables: []

extensions: []

extra_rdoc_files:
- README.rdoc
files:
- .ruby
- lib/crypt3.rb
- test/test_crypt3.rb
- HISTORY.rdoc
- README.rdoc
has_rdoc: true
homepage: http://rubyworks.github.com/crypt3
licenses:
- Apache 2.0
post_install_message:
rdoc_options:
- --title
- Crypt3 API
- --main
- README.rdoc
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
none: false
requirements:
- - ">="
- !ruby/object:Gem::Version
hash: 3
segments:
- 0
version: "0"
required_rubygems_version: !ruby/object:Gem::Requirement
none: false
requirements:
- - ">="
- !ruby/object:Gem::Version
hash: 3
segments:
- 0
version: "0"
requirements: []

rubyforge_project: crypt3
rubygems_version: 1.3.7
signing_key:
specification_version: 3
summary: Crypt3 is a ruby version of crypt(3)
test_files: []

File renamed without changes.
18 changes: 18 additions & 0 deletions COPYING.rdoc
@@ -0,0 +1,18 @@
= COPYRIGHT NOTICES

== Crypt3

Copyright (c) 2009 Poul-Henning Kamp

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

28 changes: 0 additions & 28 deletions PROFILE

This file was deleted.

37 changes: 23 additions & 14 deletions README.rdoc
@@ -1,10 +1,11 @@
= Crypt3

* http://rubyworks.github.com/crypt3
* http://github.com/rubyworks/crypt3
Author:: Poul-Henning Kamp
License:: Apache 2.0
Copyright:: 2002 (c) Poul-Henning Kamp


== DESCRIPTION:
== DESCRIPTION

Crypt3 is a pure ruby version of crypt(3) --a salted one-way
hashing of a password.
Expand All @@ -14,19 +15,27 @@ sha512, rmd160. Only the md5 hashing algorithm is standard
and compatible with crypt(3); the others are non-standard.


== FEATURES/ISSUES:
== FEATURES/LIMITATION

* Standard compliant crypt(3) implementation.
* Written purely in Ruby.
* Supports alternate hashing algorithms.
* Standard compliant crypt(3) implementation
* Written in Ruby
* Depends on Ruby's standard digest libraries
* Supports alternate hashing algorithms


== RELEASE NOTES:
== RESOURCES

* home: http://rubyworks.github.com/crypt3
* code: http://github.com/rubyworks/crypt3
* mail: http://groups.google.com/group/rubyworks-mailinglist


== RELEASE NOTES

Please see HISTORY file.


== SYNOPSIS:
== SYNOPSIS

Crypt3 provides a module method call +crypt+.

Expand All @@ -43,7 +52,7 @@ The validitly of which can ensured it using +check+:
See the RDoc API for further details and options.


== HOW TO INSTALL:
== INSTALLATIOPN

To install with RubyGems simply open a console and type:

Expand All @@ -59,11 +68,11 @@ then download the tarball package and type:
Windows users use 'ruby setup.rb all'.


== LICENSE:
== LICENSE

Copyright (c) 2009 - Poul-Henning Kamp
Copyright (c) 2009 Poul-Henning Kamp

This program is ditributed unser the terms of the LGPL license.
This program is ditributed unser the terms of the Apache 2.0 license.

See LICENSE or COPYING file for details.
See COPYING.rdoc and APACHE2.txt for details.

32 changes: 20 additions & 12 deletions Syckfile → Redfile
@@ -1,27 +1,32 @@
#!/usr/bin/env ruby

box do
types ['gem']
end
# build .gem package
gem

# generate dnotes
dnote

# generate basic statistics
stats

# generate rdocs
rdoc do
template 'redfish'
exclude ['Syckfile']
format 'redfish'
exclude ['Redfile']
output 'doc'
end

# generate ri docs
ridoc do
output 'ri'
end

# run unit tests
testrb do
tests 'test/*'
end

# publish website to github.com
grancher do
active true
#sitemap: [
Expand All @@ -31,10 +36,12 @@ grancher do
# ]
end

# publish gem to rubygems.org
gemcutter do
active true
end

# send announcement to ruby-talk mailing list.
email do
mailto "ruby-talk@ruby-lang.org"
# from : transfire@gmail.com
Expand All @@ -46,11 +53,12 @@ email do
# secure : <%= ENV['EMAIL_SECURE'] %>
end

vclog do
active false
format 'html' # xml, txt
layout 'rel' # gnu
typed false
output nil
end
#
#vclog do
# active false
# format 'html' # xml, txt
# layout 'rel' # gnu
# typed false
# output nil
#end

1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
1.1.3
File renamed without changes.
1 change: 1 addition & 0 deletions meta/contact
@@ -0,0 +1 @@
trans <transfire@gmail.com>
File renamed without changes.
3 changes: 3 additions & 0 deletions meta/description
@@ -0,0 +1,3 @@
Crypt3 is a ruby version of crypt(3),
a salted one-way hashing of a password.

1 change: 1 addition & 0 deletions meta/licenses
@@ -0,0 +1 @@
Apache 2.0
1 change: 1 addition & 0 deletions meta/organization
@@ -0,0 +1 @@
Rubyworks
2 changes: 2 additions & 0 deletions meta/repositories
@@ -0,0 +1,2 @@
---
public: git://github.com/rubyworks/crypt3.git
1 change: 1 addition & 0 deletions meta/requires
@@ -0,0 +1 @@
redline (build)
1 change: 1 addition & 0 deletions meta/summary
@@ -0,0 +1 @@
Crypt3 is a ruby version of crypt(3)
1 change: 0 additions & 1 deletion work/deprecated/meta/collection

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/contact

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/copyright

This file was deleted.

2 changes: 0 additions & 2 deletions work/deprecated/meta/description

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/homepage

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/license

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/name

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/repository

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/title

This file was deleted.

1 change: 0 additions & 1 deletion work/deprecated/meta/version

This file was deleted.

9 changes: 0 additions & 9 deletions work/deprecated/task/box.syckle

This file was deleted.

15 changes: 0 additions & 15 deletions work/deprecated/task/email.syckle

This file was deleted.

9 changes: 0 additions & 9 deletions work/deprecated/task/notes.syckle

This file was deleted.

10 changes: 0 additions & 10 deletions work/deprecated/task/rdoc.syckle

This file was deleted.

7 changes: 0 additions & 7 deletions work/deprecated/task/ridoc.syckle

This file was deleted.

10 changes: 0 additions & 10 deletions work/deprecated/task/rubyforge.syckle

This file was deleted.

9 changes: 0 additions & 9 deletions work/deprecated/task/stats.syckle

This file was deleted.

0 comments on commit f4692ce

Please sign in to comment.