Skip to content

Commit

Permalink
Updating projecthydra to hydra
Browse files Browse the repository at this point in the history
We now have access to hydra as a gem
  • Loading branch information
jeremyf committed Mar 29, 2013
1 parent cbe4869 commit 4346805
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 20 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Expand Up @@ -6,7 +6,7 @@ There are a few guidelines that we need contributors to follow so that we can ha
## Getting Started

* Make sure you have a [GitHub account](https://github.com/signup/free)
* Submit a [Github issue](https://github.com/projecthydra/projecthydra/issues) by:
* Submit a [Github issue](https://github.com/projecthydra/hydra/issues) by:
* Clearly describing the issue
* Provide a descriptive summary
* Explain the expected behavior
Expand Down Expand Up @@ -66,7 +66,7 @@ https://wiki.duraspace.org/display/hydra/Hydra+Project+Intellectual+Property+Lic
## Submitting Changes

* Push your changes to a topic branch in your fork of the repository.
* Submit a pull request to the project https://github.com/projecthydra/projecthydra
* Submit a pull request to the project https://github.com/hydra/hydra
* Update your Github issue – if you use the hub command, this can be automated – by associating the issue with the pull request.

# Additional Resources
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,4 +1,4 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in projecthydra.gemspec
# Specify your gem's dependencies in hydra.gemspec
gemspec
18 changes: 12 additions & 6 deletions README.md
@@ -1,30 +1,36 @@
# Project Hydra
# Hydra

Project Hydra Stack Dependencies

## ngauthier-hydra

If you are looking for the previous hydra gem, a distributed testing framework,
please visit [https://github.com/ngauthier/hydra](https://github.com/ngauthier/hydra).
If you need to previous hydra gem, you can use `gem ngauthier-hydra`.

## Code Status

[![Build Status](https://travis-ci.org/projecthydra/hydra-head.png?branch=master)](https://travis-ci.org/projecthydra/hydra-head)
[![Dependencies Status](https://gemnasium.com/projecthydra/projecthydra.png)](https://gemnasium.com/projecthydra/projecthydra)
[![Build Status](https://travis-ci.org/hydra/hydra-head.png?branch=master)](https://travis-ci.org/hydra/hydra-head)
[![Dependencies Status](https://gemnasium.com/hydra/hydra.png)](https://gemnasium.com/hydra/hydra)

## Contributing

[Contributing to Project Hydra](CONTRIBUTING.md)

## Developer Wiki

https://github.com/projecthydra/projecthydra/wiki
https://github.com/hydra/hydra/wiki

## Installation

Add this line to your application's Gemfile:

gem 'projecthydra'
gem 'hydra'

And then execute:

$ bundle

Or install it yourself as:

$ gem install projecthydra
$ gem install hydra
2 changes: 1 addition & 1 deletion RELEASE-POLICY.md
@@ -1,4 +1,4 @@
Potential Triggers for ProjectHydra Framework Major Releases
Potential Triggers for hydra Framework Major Releases

* rails - Major release definite, minor release possible
* ruby - Major release definite, minor release possible
Expand Down
8 changes: 4 additions & 4 deletions projecthydra.gemspec → hydra.gemspec
@@ -1,11 +1,11 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'projecthydra/version'
require 'hydra/version'

Gem::Specification.new do |gem|
gem.name = "projecthydra"
gem.version = Projecthydra::VERSION
gem.name = "hydra"
gem.version = Hydra::VERSION
gem.authors = [
"Jeremy Friesen",
]
Expand All @@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
]
gem.description = %q{Project Hydra Stack Dependencies}
gem.summary = %q{Project Hydra Stack Dependencies}
gem.homepage = "http://projecthydra.org/"
gem.homepage = "http://hydra.org/"

gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
Expand Down
5 changes: 5 additions & 0 deletions lib/hydra.rb
@@ -0,0 +1,5 @@
require "hydra/version"

module Hydra
# Your code goes here...
end
2 changes: 1 addition & 1 deletion lib/projecthydra/version.rb → lib/hydra/version.rb
@@ -1,3 +1,3 @@
module Projecthydra
module Hydra
VERSION = "6.0.0"
end
5 changes: 0 additions & 5 deletions lib/projecthydra.rb

This file was deleted.

0 comments on commit 4346805

Please sign in to comment.