Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions av_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ require 'berkeley_library/av/core/module_info'

Gem::Specification.new do |spec|
spec.name = BerkeleyLibrary::AV::Core::ModuleInfo::NAME
spec.author = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHOR
spec.email = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHOR_EMAIL
spec.authors = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHORS
spec.email = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHOR_EMAILS
spec.summary = BerkeleyLibrary::AV::Core::ModuleInfo::SUMMARY
spec.description = BerkeleyLibrary::AV::Core::ModuleInfo::DESCRIPTION
spec.license = BerkeleyLibrary::AV::Core::ModuleInfo::LICENSE
Expand Down
6 changes: 3 additions & 3 deletions lib/berkeley_library/av/core/module_info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ module AV
module Core
class ModuleInfo
NAME = 'berkeley_library-av-core'.freeze
AUTHOR = 'David Moles'.freeze
AUTHOR_EMAIL = 'dmoles@berkeley.edu'.freeze
AUTHORS = ['David Moles', 'maría a. matienzo'].freeze
AUTHOR_EMAILS = ['dmoles@berkeley.edu', 'matienzo@berkeley.edu'].freeze
SUMMARY = 'UC Berkeley Library audio/video core code'.freeze
DESCRIPTION = 'Gem for UC Berkeley Library shared audio/video code'.freeze
LICENSE = 'MIT'.freeze
VERSION = '0.4.3'.freeze
VERSION = '0.5.0'.freeze
HOMEPAGE = 'https://github.com/BerkeleyLibrary/av-core'.freeze

private_class_method :new
Expand Down