evapotranspiration 0.1.4 → 0.1.5

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: 117d459a7c1ca9b91e4a48642979cb06d3ecf9f0
4
- data.tar.gz: 8466ee4d50b09b6971b0193e743c7e24454f9b10
3
+ metadata.gz: f8561058e71ac96aeabb8d44b6f3e3093a8d7c20
4
+ data.tar.gz: 51891e4043793b19af59d9491d73cb90eca4dd98
5
5
  SHA512:
6
- metadata.gz: 5c1e88d1c030409588185b754d6d944b736706473ba42e0884f1fa12ef8296e8842b38ca822ec6e1497086d838a80e69fbadbbf102abee99a50725c5f951294b
7
- data.tar.gz: fecfeb80bac8cf721d664c2ed1cf1d5e83ea27a0d23210cb5cc2f82ec7dd201d4bcb6df2f674b9d59f045aa0180460a2867421e2f78d9fc8be51b106e9cdb249
6
+ metadata.gz: '0380b35a8925923f4d5f511d8dc1dedad458116cc9aebeeb855b6a63a799409b908384711e6ac53ec9b59f0ab1cc6cf6a5db372641b6d3fa3e7e92d2301700e3'
7
+ data.tar.gz: 3ffc58ebd65c6587ada580efee2a69d33f2629d976d8d3911eb9b0eed1c11b822514bfdea4fb969037975c9e377d8a717b01f7ef5eaf341aed85b56a376c8080
@@ -1,5 +1,5 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2.3.1
4
+ - 2.4.1
5
5
  before_install: gem install bundler -v 1.12.4
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016, Bryce Johnston
1
+ Copyright (c) 2017, Bryce Johnston
2
2
 
3
3
  All rights reserved.
4
4
 
data/README.md CHANGED
@@ -1,10 +1,10 @@
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/brycejohnston/evapotranspiration.svg)][travis]
4
+ [![Build Status](http://img.shields.io/travis/CropQuest/evapotranspiration.svg)][travis]
5
5
 
6
6
  [gem]: https://rubygems.org/gems/evapotranspiration
7
- [travis]: http://travis-ci.org/brycejohnston/evapotranspiration
7
+ [travis]: http://travis-ci.org/CropQuest/evapotranspiration
8
8
 
9
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
 
@@ -34,19 +34,11 @@ Or install it yourself as:
34
34
 
35
35
  ### Documentation
36
36
 
37
- You can view the evapotranspiration documentation here:
38
-
39
- http://www.rubydoc.info/gems/evapotranspiration
40
-
41
- ### Wiki
42
-
43
- The Evapotranspiration wiki provides some usage examples and "how-to" articles:
44
-
45
- https://github.com/brycejohnston/evapotranspiration/wiki
37
+ You can view the evapotranspiration documentation here: http://www.rubydoc.info/gems/evapotranspiration
46
38
 
47
39
  ## Contributing
48
40
 
49
- Bug reports and pull requests are welcome on GitHub at https://github.com/brycejohnston/evapotranspiration.
41
+ Bug reports and pull requests are welcome on GitHub at https://github.com/CropQuest/evapotranspiration
50
42
 
51
43
  ### Development
52
44
 
@@ -54,6 +46,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
54
46
 
55
47
  ## License
56
48
 
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)).
49
+ The gem is available as open source under the terms of the BSD 3-Clause License (see [LICENSE.txt](https://github.com/CropQuest/evapotranspiration/blob/master/LICENSE.txt)).
58
50
 
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)).
51
+ The original PyETo Python package it is based on was released under the BSD 3-Clause License (see [LICENSE-ORIGINAL.txt](https://github.com/CropQuest/evapotranspiration/blob/master/LICENSE-ORIGINAL.txt)).
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "evapotranspiration"
8
8
  spec.version = Evapotranspiration::VERSION
9
9
  spec.authors = ["Bryce Johnston"]
10
- spec.email = ["johnstonbrc@gmail.com"]
10
+ spec.email = ["bjohnston@cropquest.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/brycejohnston/evapotranspiration"
13
+ spec.homepage = "https://github.com/beaorn/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.4"
2
+ VERSION = "0.1.5"
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.4
4
+ version: 0.1.5
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-19 00:00:00.000000000 Z
11
+ date: 2017-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,7 +56,7 @@ description: Ruby library for calculating reference crop evapotranspiration (ETo
56
56
  also referred to as potential evapotranspiration (PET), using the FAO-56 Penman-Monteith
57
57
  method.
58
58
  email:
59
- - johnstonbrc@gmail.com
59
+ - bjohnston@cropquest.com
60
60
  executables: []
61
61
  extensions: []
62
62
  extra_rdoc_files: []
@@ -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/brycejohnston/evapotranspiration
81
+ homepage: https://github.com/beaorn/evapotranspiration
82
82
  licenses:
83
83
  - BSD 3-Clause
84
84
  metadata: {}
@@ -98,9 +98,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
98
  version: '0'
99
99
  requirements: []
100
100
  rubyforge_project:
101
- rubygems_version: 2.6.4
101
+ rubygems_version: 2.6.8
102
102
  signing_key:
103
103
  specification_version: 4
104
104
  summary: Ruby library for calculating reference crop evapotranspiration (ETo)
105
105
  test_files: []
106
- has_rdoc: