Skip to content

Commit

Permalink
Merge pull request #12 from ontoportal-lirmm/development
Browse files Browse the repository at this point in the history
Merge to master: Release 2.3.0
  • Loading branch information
syphax-bouazzouni authored Sep 5, 2023
2 parents 7b298ff + f49cd49 commit 8823ac7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lib/ontologies_api_client/models/agent.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require_relative "../base"

module LinkedData
module Client
module Models
class Agent < LinkedData::Client::Base
include LinkedData::Client::Collection
include LinkedData::Client::ReadWrite

@media_type = "http://xmlns.com/foaf/0.1/Agent"
end
end
end
end
2 changes: 2 additions & 0 deletions lib/ontologies_api_client/models/category.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ module Client
module Models
class Category < LinkedData::Client::Base
include LinkedData::Client::Collection
include LinkedData::Client::ReadWrite

@media_type = "http://data.bioontology.org/metadata/Category"
end
end
Expand Down
2 changes: 2 additions & 0 deletions lib/ontologies_api_client/models/group.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ module Client
module Models
class Group < LinkedData::Client::Base
include LinkedData::Client::Collection
include LinkedData::Client::ReadWrite

@media_type = "http://data.bioontology.org/metadata/Group"
end
end
Expand Down
14 changes: 14 additions & 0 deletions lib/ontologies_api_client/models/identifier.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require_relative "../base"

module LinkedData
module Client
module Models
class Identifier < LinkedData::Client::Base
include LinkedData::Client::Collection
include LinkedData::Client::ReadWrite

@media_type = "http://www.w3.org/ns/adms#Identifier"
end
end
end
end

0 comments on commit 8823ac7

Please sign in to comment.