Skip to content

Commit

Permalink
version 1.42
Browse files Browse the repository at this point in the history
  • Loading branch information
lomky committed Jul 19, 2016
1 parent 3eb31a5 commit 11677c3
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 43 deletions.
5 changes: 3 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"provides" : {
"Tuba" : {
"file" : "lib/Tuba.pm",
"version" : "1.41"
"version" : "1.42"
},
"Tuba::Activity" : {
"file" : "lib/Tuba/Activity.pm"
Expand Down Expand Up @@ -349,5 +349,6 @@
}
},
"release_status" : "stable",
"version" : "1.41"
"version" : "1.42",
"x_serialization_backend" : "JSON::PP version 2.27400"
}
7 changes: 4 additions & 3 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ configure_requires:
Module::Build::Database: '0'
Mojolicious: '6.08'
dynamic_config: 1
generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 2.142690'
generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 2.150005'
license: open_source
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -20,7 +20,7 @@ name: Tuba
provides:
Tuba:
file: lib/Tuba.pm
version: '1.41'
version: '1.42'
Tuba::Activity:
file: lib/Tuba/Activity.pm
Tuba::Array:
Expand Down Expand Up @@ -242,4 +242,5 @@ requires:
YAML: '0'
YAML::Syck: '0'
YAML::XS: '0'
version: '1.41'
version: '1.42'
x_serialization_backend: 'CPAN::Meta::YAML version 0.012'
73 changes: 36 additions & 37 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2,63 +2,62 @@
use ExtUtils::MakeMaker;
WriteMakefile
(
'PL_FILES' => {},
'NAME' => 'Tuba',
'INSTALLDIRS' => 'site',
'VERSION_FROM' => 'lib/Tuba.pm',
'PL_FILES' => {},
'PREREQ_PM' => {
'Scalar::Util' => 0,
'IO::Socket::SSL' => 2,
'YAML::Syck' => 0,
'JSON::WebToken' => 0,
'Mojolicious::Plugin::YamlConfig' => 0,
'UUID::Tiny' => 0,
'LWP::UserAgent' => 0,
'String::Diff' => 0,
'Time::Duration' => 0,
'Digest::SHA1' => 0,
'Lingua::EN::Inflect' => 0,
'Mojolicious' => '6.08',
'JSON::XS' => 0,
'Hash::Flatten' => 0,
'Number::Format' => 0,
'Pg::hstore' => 0,
'Rose::DB::Object' => 0,
'DBIx::Custom' => 0,
'YAML' => 0,
'Text::CSV_XS' => 0,
'SQL::Interp' => 0,
'Scalar::Util' => 0,
'Mojolicious::Plugin::InstallablePaths' => 0,
'SQL::Abstract' => 0,
'Path::Class' => 0,
'Lingua::EN::Inflect' => 0,
'Algorithm::Permute' => 0,
'DBD::Pg' => '3.003',
'Sort::Key' => 0,
'Module::Build::Mojolicious' => 0,
'URI::Find' => 0,
'Test::More' => 0,
'Data::Rmap' => 0,
'UUID::Tiny' => 0,
'Date::Parse' => 0,
'DBIx::Custom' => 0,
'YAML::XS' => 0,
'RDF::Query' => 0,
'DBIx::Simple' => 0,
'DateTime::Format::Human::Duration' => 0,
'Mojolicious' => '6.08',
'Digest::SHA1' => 0,
'Text::Format' => 0,
'URI::Find' => 0,
'Crypt::OpenSSL::RSA' => 0,
'Algorithm::Permute' => 0,
'YAML::Syck' => 0,
'RDF::Query' => 0,
'Mojolicious::Plugin::YamlConfig' => 0,
'String::Diff' => 0,
'Date::Parse' => 0,
'Test::More' => 0,
'Pg::hstore' => 0,
'Number::Format' => 0,
'RDF::Trine' => 0,
'IO::Socket::SSL' => 2,
'YAML' => 0,
'Swagger2' => 0,
'JSON::WebToken' => 0,
'Data::Rmap' => 0,
'Text::CSV_XS' => 0,
'SQL::Abstract' => 0,
'Rose::DB' => '0.772',
'File::ShareDir' => '1.00',
'YAML::XS' => 0,
'SQL::Interp' => 0,
'JSON::XS' => 0,
'DBIx::Simple' => 0,
'DBD::Pg' => '3.003',
'RDF::Trine' => 0,
'Sort::Key' => 0,
'Rose::DB::Object' => 0,
'DBIx::Connector' => 0,
'Number::Bytes::Human' => 0,
'Rose::DB' => '0.772',
'LWP::UserAgent' => 0
'Number::Bytes::Human' => 0
},
'EXE_FILES' => [
'bin/hypnotoad.pid',
'bin/tuba',
'bin/tuba_generate_sitemap',
'bin/tuba_get_ontology',
'bin/tuba_start_httpd',
'bin/tuba_stop_httpd'
],
'NAME' => 'Tuba'
'VERSION_FROM' => 'lib/Tuba.pm'
)
;
2 changes: 1 addition & 1 deletion lib/Tuba.pm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ use Path::Class qw/file/;
use Data::Rmap qw/rmap_all/;
use strict;

our $VERSION = '1.41';
our $VERSION = '1.42';
our @supported_formats = qw/json yaml ttl html nt rdfxml dot rdfjson jsontriples svg txt thtml csv/;

sub startup {
Expand Down

0 comments on commit 11677c3

Please sign in to comment.