From 87de8c173d8d924bb2bb3eb3a2d112e023acd16f Mon Sep 17 00:00:00 2001 From: Jared K. Smith Date: Feb 11 2016 14:45:03 +0000 Subject: Initial packaging --- diff --git a/.gitignore b/.gitignore index e69de29..fc35010 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/is-extendable-0.1.1.tgz diff --git a/nodejs-is-extendable.spec b/nodejs-is-extendable.spec new file mode 100644 index 0000000..a0cc2ba --- /dev/null +++ b/nodejs-is-extendable.spec @@ -0,0 +1,71 @@ +%{?nodejs_find_provides_and_requires} + +%global packagename is-extendable +%global enable_tests 1 + +Name: nodejs-is-extendable +Version: 0.1.1 +Release: 1%{?dist} +Summary: True if a value is array, regexp, plain object, function or date + +License: MIT +URL: https://github.com/jonschlinkert/is-extendable.git +Source0: https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz +# The test files are not included in the npm tarball. +Source1: https://raw.githubusercontent.com/jonschlinkert/is-extendable/0.1.1/test.js + + +BuildArch: noarch +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: nodejs-packaging +%if 0%{?enable_tests} +BuildRequires: mocha +%endif + +%description +Returns true if a value is any of the object types: array, regexp, plain object, +function or date. This is useful for determining if a value can be extended, +e.g. "can the value have keys?" + + +%prep +%setup -q -n package +# setup the tests +cp -p %{SOURCE1} . + + +%build +# nothing to do! + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} +cp -pr package.json index.js \ + %{buildroot}%{nodejs_sitelib}/%{packagename} + +%nodejs_symlink_deps + +%check +%nodejs_symlink_deps --check +%{__nodejs} -e 'require("./")' +%if 0%{?enable_tests} +%{_bindir}/mocha -R spec +%else +%{_bindir}/echo "Tests disabled..." +%endif + + +%files +%{!?_licensedir:%global license %doc} +%doc *.md +%license LICENSE +%{nodejs_sitelib}/%{packagename} + + +%changelog +* Tue Feb 9 2016 Jared Smith - 0.1.1-1 +- Initial packaging diff --git a/sources b/sources index e69de29..fb33738 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +7f1f2739cadbc7bc14d35c29f92f2969 is-extendable-0.1.1.tgz diff --git a/test.js b/test.js new file mode 100644 index 0000000..c141920 --- /dev/null +++ b/test.js @@ -0,0 +1,34 @@ +/*! + * is-extendable + * + * Copyright (c) 2015 . + * Licensed under the MIT license. + */ + +'use strict'; + +/* deps: mocha */ +var assert = require('assert'); +var isExtendable = require('./'); + +describe('isExtendable', function () { + it('should return true when a value is an object:', function () { + assert(isExtendable({})); + assert(isExtendable([])); + assert(isExtendable(function() {})); + assert(isExtendable(new RegExp('foo'))); + assert(isExtendable(/foo/)); + assert(isExtendable(new Date())); + assert(isExtendable(new Error())); + }); + + it('should return false when a value is not an object:', function () { + assert(!isExtendable('a')); + assert(!isExtendable(5)); + assert(!isExtendable(null)); + assert(!isExtendable()); + assert(!isExtendable(undefined)); + assert(!isExtendable(true)); + assert(!isExtendable(false)); + }); +});