├── .gitignore ├── CONTRIBUTORS ├── Gemfile ├── Gemfile.lock ├── History.rdoc ├── Manifest.txt ├── README.rdoc ├── Rakefile ├── acts_as_singleton.gemspec ├── init.rb ├── lib └── acts_as_singleton.rb └── test └── acts_as_singleton_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /History.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/History.rdoc -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/Rakefile -------------------------------------------------------------------------------- /acts_as_singleton.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/acts_as_singleton.gemspec -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require "acts_as_singleton" 2 | -------------------------------------------------------------------------------- /lib/acts_as_singleton.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/lib/acts_as_singleton.rb -------------------------------------------------------------------------------- /test/acts_as_singleton_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/acts_as_singleton/HEAD/test/acts_as_singleton_test.rb --------------------------------------------------------------------------------