├── .gitignore ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── gaga.gemspec ├── lib ├── gaga.rb └── gaga │ └── version.rb └── test ├── gaga_test.rb └── helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | .rvmrc 4 | Gemfile.lock 5 | pkg/* 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/Rakefile -------------------------------------------------------------------------------- /gaga.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/gaga.gemspec -------------------------------------------------------------------------------- /lib/gaga.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/lib/gaga.rb -------------------------------------------------------------------------------- /lib/gaga/version.rb: -------------------------------------------------------------------------------- 1 | class Gaga 2 | VERSION = "0.0.3" 3 | end 4 | -------------------------------------------------------------------------------- /test/gaga_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/test/gaga_test.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsears/gaga/HEAD/test/helper.rb --------------------------------------------------------------------------------