Skip to content

Commit

Permalink
General project maintenance.
Browse files Browse the repository at this point in the history
* Rubyforge is being shut down. Pulling all dependencies.
* Copyright dates updated.
* Removed unnecessary redcloth development dependency.
  • Loading branch information
sporkmonger committed Apr 15, 2014
1 parent b0e3ce1 commit 5922912
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 110 deletions.
4 changes: 0 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,9 @@ source 'https://rubygems.org'
group :development do
gem 'launchy', '>= 2.0.0'
gem 'yard', '>= 0.8.2'
gem 'redcarpet', :platforms => :mri
gem 'rubyforge'
end

group :test, :development do
gem 'rake', '>= 0.7.3'
gem 'rspec', '>= 2.9.0'
end

gemspec
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# UUIDTools

<dl>
<dt>Homepage</dt><dd><a href="http://uuidtools.rubyforge.org/">uuidtools.rubyforge.org</a></dd>
<dt>Homepage</dt><dd><a href="https://github.com/sporkmonger/uuidtools">sporkmonger/uuidtools</a></dd>
<dt>Author</dt><dd><a href="mailto:bob@sporkmonger.com">Bob Aman</a></dd>
<dt>Copyright</dt><dd>Copyright © 2005-2012 Bob Aman</dd>
<dt>Copyright</dt><dd>Copyright © 2005-2014 Bob Aman</dd>
<dt>License</dt><dd>Apache 2.0</dd>
</dl>

Expand Down
9 changes: 5 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"

RELEASE_NAME = "REL #{PKG_VERSION}"

RUBY_FORGE_PROJECT = PKG_NAME
RUBY_FORGE_USER = "sporkmonger"
RUBY_FORGE_PATH = "/var/www/gforge-projects/#{RUBY_FORGE_PROJECT}"
RUBY_FORGE_URL = "http://#{RUBY_FORGE_PROJECT}.rubyforge.org/"
GIT_HUB_USER = "sporkmonger"
GIT_HUB_URL = "https://github.com/#{GIT_HUB_USER}/#{PKG_NAME}"

PKG_AUTHOR = "Bob Aman"
PKG_AUTHOR_EMAIL = "bob@sporkmonger.com"
PKG_HOMEPAGE = GIT_HUB_URL
PKG_SUMMARY = "UUID generator"
PKG_DESCRIPTION = <<-TEXT
A simple universally unique ID generation library.
Expand Down
2 changes: 1 addition & 1 deletion lib/uuidtools.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# encoding:utf-8
#--
# Copyright (C) 2005-2012 Bob Aman
# Copyright (C) 2005-2014 Bob Aman
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion lib/uuidtools/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# encoding:utf-8
#--
# Copyright (C) 2005-2012 Bob Aman
# Copyright (C) 2005-2014 Bob Aman
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions tasks/gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ namespace :gem do

s.require_path = "lib"

s.author = "Bob Aman"
s.email = "bob@sporkmonger.com"
s.homepage = RUBY_FORGE_URL
s.author = PKG_AUTHOR
s.email = PKG_AUTHOR_EMAIL
s.homepage = PKG_HOMEPAGE
end

Gem::PackageTask.new(GEM_SPEC) do |p|
Expand Down
89 changes: 0 additions & 89 deletions tasks/rubyforge.rake

This file was deleted.

13 changes: 7 additions & 6 deletions uuidtools.gemspec
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
# -*- encoding: utf-8 -*-
# stub: uuidtools 2.1.4 ruby lib

Gem::Specification.new do |s|
s.name = "uuidtools"
s.version = "2.1.4"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Bob Aman"]
s.date = "2013-04-25"
s.date = "2014-04-15"
s.description = "A simple universally unique ID generation library.\n"
s.email = "bob@sporkmonger.com"
s.extra_rdoc_files = ["README.md"]
s.files = ["lib/compat", "lib/compat/securerandom.rb", "lib/uuidtools", "lib/uuidtools.rb", "lib/uuidtools/version.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/uuidtools", "spec/uuidtools/mac_address_spec.rb", "spec/uuidtools/utility_spec.rb", "spec/uuidtools/uuid_creation_spec.rb", "spec/uuidtools/uuid_parsing_spec.rb", "tasks/benchmark.rake", "tasks/gem.rake", "tasks/git.rake", "tasks/metrics.rake", "tasks/rspec.rake", "tasks/rubyforge.rake", "tasks/yard.rake", "website/index.html", "CHANGELOG", "LICENSE.txt", "README.md", "Rakefile"]
s.homepage = "http://uuidtools.rubyforge.org/"
s.files = ["CHANGELOG", "LICENSE.txt", "README.md", "Rakefile", "lib/compat", "lib/compat/securerandom.rb", "lib/uuidtools", "lib/uuidtools.rb", "lib/uuidtools/version.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/uuidtools", "spec/uuidtools/mac_address_spec.rb", "spec/uuidtools/utility_spec.rb", "spec/uuidtools/uuid_creation_spec.rb", "spec/uuidtools/uuid_parsing_spec.rb", "tasks/benchmark.rake", "tasks/gem.rake", "tasks/git.rake", "tasks/metrics.rake", "tasks/rspec.rake", "tasks/yard.rake", "website/index.html"]
s.homepage = "https://github.com/sporkmonger/uuidtools"
s.rdoc_options = ["--main", "README.md"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.rubygems_version = "2.2.2"
s.summary = "UUID generator"

if s.respond_to? :specification_version then
s.specification_version = 3
s.specification_version = 4

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rake>, [">= 0.7.3"])
Expand Down

0 comments on commit 5922912

Please sign in to comment.