├── .gitignore ├── .ruby-gemset ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── time_for_a_boolean.rb └── time_for_a_boolean │ ├── railtie.rb │ └── version.rb ├── spec └── time_for_a_boolean_spec.rb └── time_for_a_boolean.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | time_for_a_boolean 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/time_for_a_boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/lib/time_for_a_boolean.rb -------------------------------------------------------------------------------- /lib/time_for_a_boolean/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/lib/time_for_a_boolean/railtie.rb -------------------------------------------------------------------------------- /lib/time_for_a_boolean/version.rb: -------------------------------------------------------------------------------- 1 | module TimeForABoolean 2 | VERSION = '0.2.2' 3 | end 4 | -------------------------------------------------------------------------------- /spec/time_for_a_boolean_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/spec/time_for_a_boolean_spec.rb -------------------------------------------------------------------------------- /time_for_a_boolean.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/time_for_a_boolean/HEAD/time_for_a_boolean.gemspec --------------------------------------------------------------------------------