amaranth 0.3.4 → 0.4.0

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
  SHA256:
3
- metadata.gz: bea88580a7f06515df9387ff76c565d07d8c58b7f2a28c86cc7a89d98248d138
4
- data.tar.gz: 21acbfab6b730697f2ecad0290184341396831032f5d3d23ab728c92b2e71fb7
3
+ metadata.gz: eaace21a6d9ecce8ac3b00cecc5e93a1394921d1db873a4d2c990710b3a4b48c
4
+ data.tar.gz: '0193b5e271ad99c2866a37be07e88d642e790bad9b7c840f7aededcd3f297962'
5
5
  SHA512:
6
- metadata.gz: a90719c85924793222d350857e0552ff1d14664e1222344f56a8cfe7b4635b7b627dcf740b60ddf9792ca562262c48d151f6fc69b45e0c1fa9ca29c09ebb38c3
7
- data.tar.gz: 969f665cb658394e64f3492f0202d20976f4574c63de68fa78c9e5fc7916a368b216424de71ec4c950084e1aed3274800fb5cfc7291de7b1d74affe39b2ec7ad
6
+ metadata.gz: 2349bf5398e9ace3197354d99a8afd44ada51d583380370f95caf3c2b27f24b1763575924ed7b02207485a406f0cfde5f885bdbb577ade3ff68f0a40fec7d7f6
7
+ data.tar.gz: 6721e6c34658a5ff4f7cadc780427fb91d7cb4590154b6931e8f808d3b59634707e55cc9eac0cafe4cc838ac0b12523e30ccbf4eecc089aeca77f4a2426a08b2
@@ -0,0 +1,18 @@
1
+ name: CI
2
+ on: [push, pull_request]
3
+ jobs:
4
+ test:
5
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ ruby: [ 3.1, 3.2, 3.3 ]
9
+
10
+ runs-on: ubuntu-22.04
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: ${{ matrix.ruby }}
16
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
17
+ - run: bundle exec rake
18
+
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Amaranth
2
- [![Build Status](https://travis-ci.org/botandrose/amaranth.svg)](https://travis-ci.org/botandrose/amaranth)
2
+ [![CI Status](https://github.com/botandrose/amaranth/actions/workflows/ci.yml/badge.svg)](https://github.com/botandrose/amaranth/actions/workflows/ci.yml)
3
3
 
4
4
  Library for accessing the Amara REST API.
5
5
 
data/amaranth.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_development_dependency "rake", "~> 10.0"
21
+ spec.add_development_dependency "rake"
22
22
  spec.add_development_dependency "rspec", "~> 3.0"
23
23
  spec.add_development_dependency "webmock", "~> 2.0"
24
24
  end
@@ -0,0 +1,22 @@
1
+ require "amaranth/request"
2
+
3
+ module Amaranth
4
+ class Language < Collection
5
+ def self.all video_id:
6
+ fetch("/api/videos/#{video_id}/languages/").map do |attributes|
7
+ new attributes.keep_if { |key, value| fields.include? key.to_sym }
8
+ end
9
+ end
10
+
11
+ field :name
12
+ field :title
13
+ field :description
14
+ field :language_code
15
+ field :versions
16
+ field :created
17
+
18
+ def updated_at
19
+ versions.map { |hash| hash["created"] }.max
20
+ end
21
+ end
22
+ end
@@ -1,3 +1,3 @@
1
1
  module Amaranth
2
- VERSION = "0.3.4"
2
+ VERSION = "0.4.0"
3
3
  end
@@ -57,6 +57,10 @@ module Amaranth
57
57
  id.to_s.length > 0
58
58
  end
59
59
 
60
+ def fetch_languages
61
+ Language.all(video_id: id)
62
+ end
63
+
60
64
  private
61
65
 
62
66
  READONLY_ATTRIBUTES = %i(all_urls languages)
data/lib/amaranth.rb CHANGED
@@ -3,6 +3,7 @@ require "amaranth/config"
3
3
  require "amaranth/team"
4
4
  require "amaranth/project"
5
5
  require "amaranth/video"
6
+ require "amaranth/language"
6
7
 
7
8
  module Amaranth
8
9
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amaranth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micah Geisel
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-22 00:00:00.000000000 Z
11
+ date: 2024-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '10.0'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '10.0'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rspec
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -59,6 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".github/workflows/ci.yml"
62
63
  - ".gitignore"
63
64
  - ".rspec"
64
65
  - ".travis.yml"
@@ -72,6 +73,7 @@ files:
72
73
  - lib/amaranth.rb
73
74
  - lib/amaranth/collection.rb
74
75
  - lib/amaranth/config.rb
76
+ - lib/amaranth/language.rb
75
77
  - lib/amaranth/project.rb
76
78
  - lib/amaranth/request.rb
77
79
  - lib/amaranth/team.rb
@@ -96,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
98
  - !ruby/object:Gem::Version
97
99
  version: '0'
98
100
  requirements: []
99
- rubygems_version: 3.0.8
101
+ rubygems_version: 3.5.11
100
102
  signing_key:
101
103
  specification_version: 4
102
104
  summary: Library for accessing the Amara REST API