0.0
No commit activity in last 3 years
No release in over 3 years
Dependency for FunWith gems, simplifies the setup of new gems, installing version data, root filepath, and default requirements.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0.0.13, ~> 0.0
>= 0.0.3, ~> 0.0
 Project Readme

fun_with_gems¶ ↑

Opinionated Ruby gems with a consistent file schema. Gems made easy.

FWGems assumes turns one of the modules defined in your gem folder to be “the fun gem.”

You define the gem in the file lib/<gem_initialization_file>.rb by putting the following contents in it:

require 'fun_with_gems'
FunWith::Gems.make_gem_fun( "MyNeatoGem" )

Doing this has the following effects:

  • Identifies the gem as being a ‘fun gem’ (‘MyNeatoGem.is_fun_gem? => true`)

  • learns where the gem’s root directory is (you can find this info by calling ‘MyNeatoGem.root`)

  • loads the “VERSION” file at the root of the directory (get via ‘MyNeatoGem.version`, `MyNeatoGem.version.(major|minor|patch)`)

    * .version returns a subclass of string, but one that understands that "0.2" < "0.12", making version comparisons sensible.
  • loads every file in the ‘<ROOT>/lib/<GEM_NAME>` directory.

  • If there is a file ‘lib/my_neato_gem/gem_api.rb`, we expect it to define MyNeatoGem::GemAPI, which is used to extend MyNeatoGem.

Should also:

  • TODO: Check for API modules and attach them to their apis. For example, if there’s a lib/my_neato_gem/api.rb, and it defines a module MyNeatoGem::API, the MyNeatoGem module should be extended with the module

Testing!

Simplifies your Rakefile

Features:

  • Version…ing?

Description goes here.

Contributing to fun_with_gems¶ ↑

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet.

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it.

  • Fork the project.

  • Start a feature/bugfix branch.

  • Commit and push until you are happy with your contribution.

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright © 2014 Bryce Anderson. See LICENSE.txt for further details.