├── .ci.gemfile ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG ├── Gemfile ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── lib └── sequel │ └── annotate.rb ├── sequel-annotate.gemspec └── spec ├── annotated_after ├── category.rb ├── item.rb ├── manufacturer.rb ├── scategory.rb ├── scomplexdataset.rb ├── sitem.rb ├── sitemwithcoding.rb ├── sitemwithencoding.rb ├── sitemwithfrozenliteral.rb ├── sitemwithwarnindent.rb ├── sitemwithwarnpastscope.rb └── smanufacturer.rb ├── annotated_before ├── category.rb ├── item.rb ├── manufacturer.rb ├── scategory.rb ├── scomplexdataset.rb ├── sitem.rb ├── sitemwithcoding.rb ├── sitemwithencoding.rb ├── sitemwithfrozenliteral.rb ├── sitemwithwarnindent.rb ├── sitemwithwarnpastscope.rb └── smanufacturer.rb ├── annotated_both └── sitemwithcoding.rb ├── namespaced ├── itm_annotated.rb └── itm_unannotated.rb ├── sequel-annotate_spec.rb └── unannotated ├── category.rb ├── item.rb ├── manufacturer.rb ├── no_class.rb ├── non_sequel.rb ├── not_model.rb ├── scategory.rb ├── scomplexdataset.rb ├── sitem.rb ├── sitemwithcoding.rb ├── sitemwithencoding.rb ├── sitemwithfrozenliteral.rb ├── sitemwithmagiccomment.rb ├── sitemwithwarnindent.rb ├── sitemwithwarnpastscope.rb └── smanufacturer.rb /.ci.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/.ci.gemfile -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /rdoc 3 | /sequel-annotate-*.gem 4 | /spec/tmp 5 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/sequel/annotate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/lib/sequel/annotate.rb -------------------------------------------------------------------------------- /sequel-annotate.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/sequel-annotate.gemspec -------------------------------------------------------------------------------- /spec/annotated_after/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/category.rb -------------------------------------------------------------------------------- /spec/annotated_after/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/item.rb -------------------------------------------------------------------------------- /spec/annotated_after/manufacturer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/manufacturer.rb -------------------------------------------------------------------------------- /spec/annotated_after/scategory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/scategory.rb -------------------------------------------------------------------------------- /spec/annotated_after/scomplexdataset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/scomplexdataset.rb -------------------------------------------------------------------------------- /spec/annotated_after/sitem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/sitem.rb -------------------------------------------------------------------------------- /spec/annotated_after/sitemwithcoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/sitemwithcoding.rb -------------------------------------------------------------------------------- /spec/annotated_after/sitemwithencoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/sitemwithencoding.rb -------------------------------------------------------------------------------- /spec/annotated_after/sitemwithfrozenliteral.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/sitemwithfrozenliteral.rb -------------------------------------------------------------------------------- /spec/annotated_after/sitemwithwarnindent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/sitemwithwarnindent.rb -------------------------------------------------------------------------------- /spec/annotated_after/sitemwithwarnpastscope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/sitemwithwarnpastscope.rb -------------------------------------------------------------------------------- /spec/annotated_after/smanufacturer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_after/smanufacturer.rb -------------------------------------------------------------------------------- /spec/annotated_before/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/category.rb -------------------------------------------------------------------------------- /spec/annotated_before/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/item.rb -------------------------------------------------------------------------------- /spec/annotated_before/manufacturer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/manufacturer.rb -------------------------------------------------------------------------------- /spec/annotated_before/scategory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/scategory.rb -------------------------------------------------------------------------------- /spec/annotated_before/scomplexdataset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/scomplexdataset.rb -------------------------------------------------------------------------------- /spec/annotated_before/sitem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/sitem.rb -------------------------------------------------------------------------------- /spec/annotated_before/sitemwithcoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/sitemwithcoding.rb -------------------------------------------------------------------------------- /spec/annotated_before/sitemwithencoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/sitemwithencoding.rb -------------------------------------------------------------------------------- /spec/annotated_before/sitemwithfrozenliteral.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/sitemwithfrozenliteral.rb -------------------------------------------------------------------------------- /spec/annotated_before/sitemwithwarnindent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/sitemwithwarnindent.rb -------------------------------------------------------------------------------- /spec/annotated_before/sitemwithwarnpastscope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/sitemwithwarnpastscope.rb -------------------------------------------------------------------------------- /spec/annotated_before/smanufacturer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_before/smanufacturer.rb -------------------------------------------------------------------------------- /spec/annotated_both/sitemwithcoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/annotated_both/sitemwithcoding.rb -------------------------------------------------------------------------------- /spec/namespaced/itm_annotated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/namespaced/itm_annotated.rb -------------------------------------------------------------------------------- /spec/namespaced/itm_unannotated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/namespaced/itm_unannotated.rb -------------------------------------------------------------------------------- /spec/sequel-annotate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/sequel-annotate_spec.rb -------------------------------------------------------------------------------- /spec/unannotated/category.rb: -------------------------------------------------------------------------------- 1 | class Category < Sequel::Model 2 | end 3 | -------------------------------------------------------------------------------- /spec/unannotated/item.rb: -------------------------------------------------------------------------------- 1 | class Item < Sequel::Model 2 | end 3 | 4 | -------------------------------------------------------------------------------- /spec/unannotated/manufacturer.rb: -------------------------------------------------------------------------------- 1 | class Manufacturer < ABC 2 | end 3 | -------------------------------------------------------------------------------- /spec/unannotated/no_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/no_class.rb -------------------------------------------------------------------------------- /spec/unannotated/non_sequel.rb: -------------------------------------------------------------------------------- 1 | module NonSequel 2 | end 3 | -------------------------------------------------------------------------------- /spec/unannotated/not_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/not_model.rb -------------------------------------------------------------------------------- /spec/unannotated/scategory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/scategory.rb -------------------------------------------------------------------------------- /spec/unannotated/scomplexdataset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/scomplexdataset.rb -------------------------------------------------------------------------------- /spec/unannotated/sitem.rb: -------------------------------------------------------------------------------- 1 | class SItem < Sequel::Model(SDB[:items]) 2 | end 3 | 4 | -------------------------------------------------------------------------------- /spec/unannotated/sitemwithcoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/sitemwithcoding.rb -------------------------------------------------------------------------------- /spec/unannotated/sitemwithencoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/sitemwithencoding.rb -------------------------------------------------------------------------------- /spec/unannotated/sitemwithfrozenliteral.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/sitemwithfrozenliteral.rb -------------------------------------------------------------------------------- /spec/unannotated/sitemwithmagiccomment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/sitemwithmagiccomment.rb -------------------------------------------------------------------------------- /spec/unannotated/sitemwithwarnindent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/sitemwithwarnindent.rb -------------------------------------------------------------------------------- /spec/unannotated/sitemwithwarnpastscope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/sitemwithwarnpastscope.rb -------------------------------------------------------------------------------- /spec/unannotated/smanufacturer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/sequel-annotate/HEAD/spec/unannotated/smanufacturer.rb --------------------------------------------------------------------------------