Skip to content

Commit

Permalink
Move gem repo
Browse files Browse the repository at this point in the history
  • Loading branch information
brycejohnston committed Jun 19, 2016
1 parent 549839c commit 2cebafb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Evapotranspiration

[![Gem Version](http://img.shields.io/gem/v/evapotranspiration.svg)][gem]
[![Build Status](http://img.shields.io/travis/AgRuby/evapotranspiration.svg)][travis]
[![Build Status](http://img.shields.io/travis/brycejohnston/evapotranspiration.svg)][travis]

[gem]: https://rubygems.org/gems/evapotranspiration
[travis]: http://travis-ci.org/AgRuby/evapotranspiration
[travis]: http://travis-ci.org/brycejohnston/evapotranspiration

Ruby library for calculating reference crop evapotranspiration (ETo), also referred to as potential evapotranspiration (PET), using the FAO-56 Penman-Monteith method. This was originally ported into Ruby from the [PyETo Python package from Mark Richards](https://github.com/woodcrafty/PyETo). The library provides numerous methods for estimating missing meteorological data.

Expand Down Expand Up @@ -42,18 +42,18 @@ http://www.rubydoc.info/gems/evapotranspiration

The Evapotranspiration wiki provides some usage examples and "how-to" articles:

https://github.com/AgRuby/evapotranspiration/wiki
https://github.com/brycejohnston/evapotranspiration/wiki

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/AgRuby/evapotranspiration.
Bug reports and pull requests are welcome on GitHub at https://github.com/brycejohnston/evapotranspiration.

### Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`.

## License

The gem is available as open source under the terms of the BSD 3-Clause License (see [LICENSE.txt](https://github.com/AgRuby/evapotranspiration/blob/master/LICENSE.txt)).
The gem is available as open source under the terms of the BSD 3-Clause License (see [LICENSE.txt](https://github.com/brycejohnston/evapotranspiration/blob/master/LICENSE.txt)).

The original PyETo Python package it is based on was released under the BSD 3-Clause License (see [LICENSE-ORIGINAL.txt](https://github.com/AgRuby/evapotranspiration/blob/master/LICENSE-ORIGINAL.txt)).
The original PyETo Python package it is based on was released under the BSD 3-Clause License (see [LICENSE-ORIGINAL.txt](https://github.com/brycejohnston/evapotranspiration/blob/master/LICENSE-ORIGINAL.txt)).
2 changes: 1 addition & 1 deletion evapotranspiration.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.email = ["johnstonbrc@gmail.com"]
spec.summary = %q{Ruby library for calculating reference crop evapotranspiration (ETo)}
spec.description = %q{Ruby library for calculating reference crop evapotranspiration (ETo), also referred to as potential evapotranspiration (PET), using the FAO-56 Penman-Monteith method.}
spec.homepage = "https://github.com/AgRuby/evapotranspiration"
spec.homepage = "https://github.com/brycejohnston/evapotranspiration"
spec.license = "BSD 3-Clause"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
Expand Down
2 changes: 1 addition & 1 deletion lib/evapotranspiration/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Evapotranspiration
VERSION = "0.1.3"
VERSION = "0.1.4"
end

0 comments on commit 2cebafb

Please sign in to comment.