Make a pull of classes
Node.js Streams, a user-land copy of the stream library from Node.js
Excel Workbook Manager - Read and Write xlsx and csv Files.
[](http://www.typescriptlang.org/) [](https://www.npmjs.com/package/@n1ru4l/push-pull-async
The lightest signal library.
Parsing the JavaScript's RegExp in JavaScript.
OCSP Stapling implementation
Thin wrapper around zen-observable and @types/zen-observable, to support ESM exports as well as CommonJS exports
The iconic font and CSS framework
An implementation of the CSSStyleDeclaration class from the CSS Object Model specification
minimal pull stream
An advanced font engine for Node and the browser
Excel Workbook Manager - Read and Write xlsx and csv Files.
Full BCP 47 language subtag data from the official IANA repository, in JSON format with multiple indices.
Angular - the compiler library
Angular - the core framework
Format and manipulate numbers.
Angular - directives and services for creating forms
Angular - library for using Angular in a web browser
Angular Material Component Development Kit
Angular - the routing library
Angular - commonly needed directives and services
Octokit plugin to create a pull request with multiple file changes
The minimal Signals implementation based on https://github.com/vuejs/core/pull/5912.
Can interpret a maven pom and pull properties and classes into context.
Allows use of the @component tag to pull related methods and classes into one file
This gem provides a simple utility class to pull data from snapdeal.com using Snapdeal's affiliate APIs
GimmeWikidata is a Ruby gem that provides an interface to search, pull (and, in future, publish) data from Wikidata. It provides a number of classes that encapsulate the data model of Wikidata.
This is a heavily modified fork of http://github.com/defunkt/colored gem, with many sensible pull requests combined. Since the authors of the original gem no longer support it, this might, perhaps, be considered a good alternative. Simple gem that adds various color methods to String class, and can be used as follows: require 'colored2' puts 'this is red'.red puts 'this is red with a yellow background'.red.on.yellow puts 'this is red with and italic'.red.italic puts 'this is green bold'.green.bold << ' and regular'.green puts 'this is really bold blue on white but reversed'.bold.blue.on.white.reversed puts 'this is regular, but '.red! << 'this is red '.yellow! << ' and yellow.'.no_color! puts ('this is regular, but '.red! do 'this is red '.yellow! do ' and yellow.'.no_color! end end)
What is send? ============= It’s a tiny wee ruby gem that is a fork of [Object#try](http://ozmm.org/posts/try.html) and [Object#try from Rails](http://api.rubyonrails.org/classes/Object.html#M000027). It will *never* throw a NoMethodError (no matter the receiver), and returns nil if called on a nil-class or if the method in the receiver does not exist. Note on Patches/Pull Requests ----------------------------- 1. [Fork me!](http://github.com/Burgestrand/send-/fork) 2. Write tests for your new feature or bug fix (important, I don’t want to break your stuff in a future update by accident!) 3. Hack away on the code; make your tests pass. 4. Commit! Don’t touch Rakefile, version or git history in any of the commits you want me to pick. 5. ??? 6. Send me a pull request!
# Addy Allows pretty summations. Instead of writing: (1..5).inject(0) do |memo, num| memo + (num**num) end You write: sum(1..5) do |num| num**num end Personally, I would rather write the latter. ## Usage Install the gem: gem install addy Then use it! require 'addy' class MyClass #include it in a class or in Object to get it everywhere include Addy def my_awesome_adder(range) sum(range) end end When you include addy on a class that implements inject, you don't even need to pass a value to it. Instead it calls sum on your class. require 'addy' class MyClass < Range include Addy def my_awesome_adder sum end end ### Calling It You can call either sum or summation. They're aliases for the same thing. Note: The following assumes Addy is included into Range. When you pass a block to sum it will execute the block on the current number before adding it to the sum. sum(1..5) {|num| num + 1} #=> 20 (1..5).sum {|num| num + 1} #=> 20 You don't have to pass a block though! #this sum(1..5) #=> 15 #and (1..5).sum #=> 15 #are equivalent to sum(1..5) {|num| num} #=> 15 #and (1..5).sum {|num| num} #=> 15 ### Input Ranges and numeric arrays both work well. sum(1..5) #=> 15 sum([1,2,3,4,5]) #=> 15 ## Note on Patches/Pull Requests * Fork the project. * Make your feature addition or bug fix. * Add tests for it. This is important so I don't break it in a future version unintentionally. * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) * Send me a pull request. Bonus points for topic branches. ## Copyright Copyright (c) 2010 Allen Madsen. See LICENSE for details. PS: Isn't it ridiculous how much documentation I wrote for one function?
Sloth is a collection of helpers. A whole bunch of methods defind on ruby's inbuilt classes, just so you can code away without taking the pain of writing it by yourself. Sloth was born out of boredom. The need to write same code snippets over and over again. If you would like to add a method/helper that you think would be useful to others as well, please do send a pull request.
Watermark's library for interfacing with Arena ChMS's web API
Helpers to read debian control files
Authentication / Authorization library for Watermark apps
backend-toolkit =============== A set of classes that simplify building a scalable backend for your app. Requirements ---------------- * redis (server and ruby gem) * json gem Installation ---------------- $ gem install backend-toolkit Development & Testing ---------------- $ bundle install $ rake Usage ---------------- ```ruby require 'backend-toolkit' # TO DO ``` Contributions ---------------- * Check commits history and issue tracker to be sure that no one else is working on the feature you want or are fixing the bug you found. * Fork the project. * Create a feature/bugfix branch and work on it. * Please add all tests needed to have a reasonably coverage of the new feature or bug that you are fixing. * Rebase your branch and open a pull request. * Please don't mess with the Rakefile, version, or history. License, Authors & Contributors ------- Check LICENSE.txt and AUTHORS.txt
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.