Project
Reverse Dependencies for rspec
The projects listed here declare rspec as a runtime or development dependency
0.0
This cli provides a way to load/dump database in development environment
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Switcher is simple, event-driven state machine
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Switches lets you turn on and off parts of your code from the commandline. There's a defaults.yml and a current.yml in the background.
For example:
app/models/user.rb
after_create :subscribe_email if Switches.campaign_monitor?
>> Switches.campaign_monitor?
# => false
$ rake switches:on[campaign_monitor]
>> Switches.campaign_monitor?
# => true
$ rake switches:reset # goes back to default.yml
$ rake switches:diff # shows diff b/w current.yml and default.yml
$ rake s:d # alias for switches:diff
$ rake s:c # alias for switches:list_current
etc.
It's inspired by ActiveSupport's StringInquirer (e.g. Rails.development?) and traditional compile-time assertions.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
A configurable utility for jumping across files
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
SwitchGear is a library which contains the Circuit Breaker pattern. It is used to prevent constant fail-over from spotty remote systems
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
This gem allows for users of Sidekiq in a distributed system to use a common circuit breaker that can be used across any number of Sidekiq servers"
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Adds a switch statement to Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Manages different search engines in a Rails app
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Provides generation of copyright.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Simple Window Manager is a utillity to move and place windows in Ubuntu.
It might work with other *nix distributions.
The utillity is intended to be used with keyboard shortcuts, and is
always operating on the active window.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Pulls up the latest articles in workouts
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Swift and Objective-C comparison reporter
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Sworn is Rack middleware to handle OAuth 1.0a signed requests
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
# Star Wars: Animal Wrangler
Join the Donut Brigade (or whatever RPG group you play with) on their neverend quest to adopt all the animals in the galaxy!
Make sure you have:
- your character sheet
- your d20
Note:
This is based off of the d20 System, and uses the "Star Wars Roleplaying Game, Revised Edition" from 2002.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Simple Client for Swrve API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Sxn simplifies git worktree management with intelligent project rules and secure automation
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
SNS/SQS wrapper to make development (Redis) and test (Memory) environment transparent.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Simple tool to synchronize Rails ymls with locales.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Cut company name notation.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
= Barcode
Creating barcodes (at the moment only Interleaved2of5).
== Usage
Create the barcode string and the barcode graphics data
i2o5 = Interleave2of5("01199")
code = i2o5.encode
barcode = i2o5.barcode
pdf = Prawn::Document.new
barcode.to_pdf(pdf)
When used with rails add
require 'interleave2of5'
to config/application.rb
The barcode can be used to create a graphical representation of the barcode.
== Release Notes
* Version 0.0.1
Create barcode Interleaved 2 of 5 that can be added to a pdf file
* Version 0.0.2
Fix check digit calculation
* Version 0.0.3
Add valid? to check whether a decoded value (e.g. by a barcode scanner) is
valid
== Licencse
Barcode is published under the MIT license
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025