evapotranspiration 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d42faca68854dee08ce74daf91aade4b2b3d053a
4
- data.tar.gz: fdbd328a397870e26c8281bfa95fe1e12c57cfc9
3
+ metadata.gz: 117d459a7c1ca9b91e4a48642979cb06d3ecf9f0
4
+ data.tar.gz: 8466ee4d50b09b6971b0193e743c7e24454f9b10
5
5
  SHA512:
6
- metadata.gz: 23cc8b262d93fd46c61082db9c80e61458679b2ebbd40980d3d5e7c253ced745908c6a60e84118ceaa1359824718a790985ad67c1d58f153afbed285a7e0c15a
7
- data.tar.gz: 85283c747e3dcb20db5c6b36a9abeff6b2bc7cd8eef3a0794d2d093964d12eb94170628930419ded53016c4fc07c298960479c7644f2f71ceb55f17f2b1a613e
6
+ metadata.gz: 5c1e88d1c030409588185b754d6d944b736706473ba42e0884f1fa12ef8296e8842b38ca822ec6e1497086d838a80e69fbadbbf102abee99a50725c5f951294b
7
+ data.tar.gz: fecfeb80bac8cf721d664c2ed1cf1d5e83ea27a0d23210cb5cc2f82ec7dd201d4bcb6df2f674b9d59f045aa0180460a2867421e2f78d9fc8be51b106e9cdb249
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # Evapotranspiration
2
2
 
3
3
  [![Gem Version](http://img.shields.io/gem/v/evapotranspiration.svg)][gem]
4
- [![Build Status](http://img.shields.io/travis/AgRuby/evapotranspiration.svg)][travis]
4
+ [![Build Status](http://img.shields.io/travis/brycejohnston/evapotranspiration.svg)][travis]
5
5
 
6
6
  [gem]: https://rubygems.org/gems/evapotranspiration
7
- [travis]: http://travis-ci.org/AgRuby/evapotranspiration
7
+ [travis]: http://travis-ci.org/brycejohnston/evapotranspiration
8
8
 
9
- 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 [Mark Richard's PyETo Python package](https://github.com/woodcrafty/PyETo). The library provides numerous methods for estimating missing meteorological data.
9
+ 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.
10
10
 
11
11
  Three methods for estimating ETo/PET are implemented:
12
12
 
@@ -42,11 +42,11 @@ http://www.rubydoc.info/gems/evapotranspiration
42
42
 
43
43
  The Evapotranspiration wiki provides some usage examples and "how-to" articles:
44
44
 
45
- https://github.com/AgRuby/evapotranspiration/wiki
45
+ https://github.com/brycejohnston/evapotranspiration/wiki
46
46
 
47
47
  ## Contributing
48
48
 
49
- Bug reports and pull requests are welcome on GitHub at https://github.com/AgRuby/evapotranspiration.
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/brycejohnston/evapotranspiration.
50
50
 
51
51
  ### Development
52
52
 
@@ -54,6 +54,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
54
54
 
55
55
  ## License
56
56
 
57
- 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)).
57
+ 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)).
58
58
 
59
- 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)).
59
+ 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)).
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["johnstonbrc@gmail.com"]
11
11
  spec.summary = %q{Ruby library for calculating reference crop evapotranspiration (ETo)}
12
12
  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.}
13
- spec.homepage = "https://github.com/AgRuby/evapotranspiration"
13
+ spec.homepage = "https://github.com/brycejohnston/evapotranspiration"
14
14
  spec.license = "BSD 3-Clause"
15
15
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
16
  spec.bindir = "exe"
@@ -1,3 +1,3 @@
1
1
  module Evapotranspiration
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evapotranspiration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryce Johnston
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-06-10 00:00:00.000000000 Z
11
+ date: 2016-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -78,7 +78,7 @@ files:
78
78
  - lib/evapotranspiration/thornthwaite.rb
79
79
  - lib/evapotranspiration/validation.rb
80
80
  - lib/evapotranspiration/version.rb
81
- homepage: https://github.com/AgRuby/evapotranspiration
81
+ homepage: https://github.com/brycejohnston/evapotranspiration
82
82
  licenses:
83
83
  - BSD 3-Clause
84
84
  metadata: {}