usda_fdc 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/usda_fdc/version.rb +1 -1
- metadata +4 -9
- data/.rubocop.yml +0 -11
- data/Gemfile +0 -9
- data/Rakefile +0 -16
- data/sig/usda_fdc.rbs +0 -4
- data/usda_fdc.gemspec +0 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f0136a088aacc1d2e4b5f1b8049f7fcb313d9299a203748d5a1b3faf993141b
|
4
|
+
data.tar.gz: 631c944a879ee521109440a2f8eefbc2e57cb3ce7618b8928fdf4c0a8d5b3328
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef5b61d55f0c84240c8c6bf112da41cacf3dad2afa18887b4ed9b05cd6e66cd7c94ae99850a160f7663852ec6d7b0cf120d981bbf40e3b51d9e743ce788a6133
|
7
|
+
data.tar.gz: 81252531dbe674e9b23d54fd7d4df145792ca5ea7ca3195eeddea2b81f9b84b20718a43e1e7a6c9bef7689bc530ba5eb04f714284bd6bfb4dc21b809adbb7d31
|
data/CHANGELOG.md
CHANGED
data/lib/usda_fdc/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: usda_fdc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zoran Pesic
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -16,20 +16,15 @@ executables: []
|
|
16
16
|
extensions: []
|
17
17
|
extra_rdoc_files: []
|
18
18
|
files:
|
19
|
-
- ".rubocop.yml"
|
20
19
|
- CHANGELOG.md
|
21
|
-
- Gemfile
|
22
20
|
- LICENSE.txt
|
23
21
|
- README.md
|
24
|
-
- Rakefile
|
25
22
|
- lib/usda_fdc.rb
|
26
23
|
- lib/usda_fdc/client.rb
|
27
24
|
- lib/usda_fdc/configuration.rb
|
28
25
|
- lib/usda_fdc/helpers/configurable.rb
|
29
26
|
- lib/usda_fdc/helpers/errors.rb
|
30
27
|
- lib/usda_fdc/version.rb
|
31
|
-
- sig/usda_fdc.rbs
|
32
|
-
- usda_fdc.gemspec
|
33
28
|
homepage: https://github.com/zokioki/usda_fdc
|
34
29
|
licenses:
|
35
30
|
- MIT
|
@@ -51,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
46
|
- !ruby/object:Gem::Version
|
52
47
|
version: '0'
|
53
48
|
requirements: []
|
54
|
-
rubygems_version: 3.
|
49
|
+
rubygems_version: 3.4.3
|
55
50
|
signing_key:
|
56
51
|
specification_version: 4
|
57
52
|
summary: A Ruby interface to the USDA FoodData Central API.
|
data/.rubocop.yml
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'bundler/gem_tasks'
|
4
|
-
require 'rake/testtask'
|
5
|
-
|
6
|
-
Rake::TestTask.new(:test) do |t|
|
7
|
-
t.libs << 'test'
|
8
|
-
t.libs << 'lib'
|
9
|
-
t.test_files = FileList['test/**/test_*.rb']
|
10
|
-
end
|
11
|
-
|
12
|
-
require 'rubocop/rake_task'
|
13
|
-
|
14
|
-
RuboCop::RakeTask.new
|
15
|
-
|
16
|
-
task default: %i[test rubocop]
|
data/sig/usda_fdc.rbs
DELETED
data/usda_fdc.gemspec
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require_relative 'lib/usda_fdc/version'
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = 'usda_fdc'
|
7
|
-
spec.version = UsdaFdc::VERSION
|
8
|
-
spec.authors = ['Zoran Pesic']
|
9
|
-
|
10
|
-
spec.summary = 'A Ruby interface to the USDA FoodData Central API.'
|
11
|
-
spec.homepage = 'https://github.com/zokioki/usda_fdc'
|
12
|
-
spec.license = 'MIT'
|
13
|
-
spec.required_ruby_version = '>= 2.6.0'
|
14
|
-
|
15
|
-
spec.metadata['homepage_uri'] = spec.homepage
|
16
|
-
spec.metadata['source_code_uri'] = spec.homepage
|
17
|
-
|
18
|
-
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
19
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
20
|
-
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
spec.bindir = 'exe'
|
25
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
26
|
-
spec.require_paths = ['lib']
|
27
|
-
end
|