├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── after_do.gemspec ├── lib ├── after_do.rb └── after_do │ └── version.rb ├── samples ├── alternative_naming.rb ├── before.rb ├── dog.rb ├── error_in_callback.rb ├── getting_a_hold.rb ├── inheritance.rb ├── singleton.rb ├── with_module.rb └── within_class.rb └── spec ├── after_do_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | after_do 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /after_do.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/after_do.gemspec -------------------------------------------------------------------------------- /lib/after_do.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/lib/after_do.rb -------------------------------------------------------------------------------- /lib/after_do/version.rb: -------------------------------------------------------------------------------- 1 | module AfterDo 2 | # ::nodoc:: 3 | VERSION = '0.4.0' 4 | end 5 | -------------------------------------------------------------------------------- /samples/alternative_naming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/alternative_naming.rb -------------------------------------------------------------------------------- /samples/before.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/before.rb -------------------------------------------------------------------------------- /samples/dog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/dog.rb -------------------------------------------------------------------------------- /samples/error_in_callback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/error_in_callback.rb -------------------------------------------------------------------------------- /samples/getting_a_hold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/getting_a_hold.rb -------------------------------------------------------------------------------- /samples/inheritance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/inheritance.rb -------------------------------------------------------------------------------- /samples/singleton.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/singleton.rb -------------------------------------------------------------------------------- /samples/with_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/with_module.rb -------------------------------------------------------------------------------- /samples/within_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/samples/within_class.rb -------------------------------------------------------------------------------- /spec/after_do_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/spec/after_do_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragTob/after_do/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------