├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── TODO ├── bin ├── console └── setup ├── footprinted.gemspec ├── lib ├── footprinted.rb ├── footprinted │ ├── configuration.rb │ ├── model.rb │ ├── railtie.rb │ ├── trackable_activity.rb │ └── version.rb └── generators │ └── footprinted │ ├── install_generator.rb │ └── templates │ ├── create_footprinted_trackable_activities.rb.erb │ └── footprinted.rb └── sig └── footprinted.rbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/TODO -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/bin/setup -------------------------------------------------------------------------------- /footprinted.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/footprinted.gemspec -------------------------------------------------------------------------------- /lib/footprinted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/footprinted.rb -------------------------------------------------------------------------------- /lib/footprinted/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/footprinted/configuration.rb -------------------------------------------------------------------------------- /lib/footprinted/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/footprinted/model.rb -------------------------------------------------------------------------------- /lib/footprinted/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/footprinted/railtie.rb -------------------------------------------------------------------------------- /lib/footprinted/trackable_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/footprinted/trackable_activity.rb -------------------------------------------------------------------------------- /lib/footprinted/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Footprinted 4 | VERSION = "0.1.0" 5 | end 6 | -------------------------------------------------------------------------------- /lib/generators/footprinted/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/generators/footprinted/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/footprinted/templates/create_footprinted_trackable_activities.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/generators/footprinted/templates/create_footprinted_trackable_activities.rb.erb -------------------------------------------------------------------------------- /lib/generators/footprinted/templates/footprinted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/lib/generators/footprinted/templates/footprinted.rb -------------------------------------------------------------------------------- /sig/footprinted.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rameerez/footprinted/HEAD/sig/footprinted.rbs --------------------------------------------------------------------------------