├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── foundation_rails_helper.gemspec ├── lib ├── foundation_rails_helper.rb ├── foundation_rails_helper │ ├── action_view_extension.rb │ ├── configuration.rb │ ├── flash_helper.rb │ ├── form_builder.rb │ ├── size_class_calculator.rb │ └── version.rb └── railtie.rb └── spec ├── .rubocop.yml ├── foundation_rails_helper ├── configuration_spec.rb ├── flash_helper_spec.rb └── form_builder_spec.rb ├── spec_helper.rb └── support ├── .rubocop.yml ├── classes ├── author.rb ├── book.rb └── genre.rb └── mock_rails.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --backtrace 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/Rakefile -------------------------------------------------------------------------------- /foundation_rails_helper.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/foundation_rails_helper.gemspec -------------------------------------------------------------------------------- /lib/foundation_rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/lib/foundation_rails_helper.rb -------------------------------------------------------------------------------- /lib/foundation_rails_helper/action_view_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/lib/foundation_rails_helper/action_view_extension.rb -------------------------------------------------------------------------------- /lib/foundation_rails_helper/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/lib/foundation_rails_helper/configuration.rb -------------------------------------------------------------------------------- /lib/foundation_rails_helper/flash_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/lib/foundation_rails_helper/flash_helper.rb -------------------------------------------------------------------------------- /lib/foundation_rails_helper/form_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/lib/foundation_rails_helper/form_builder.rb -------------------------------------------------------------------------------- /lib/foundation_rails_helper/size_class_calculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/lib/foundation_rails_helper/size_class_calculator.rb -------------------------------------------------------------------------------- /lib/foundation_rails_helper/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module FoundationRailsHelper 3 | VERSION = '4.0.1' 4 | end 5 | -------------------------------------------------------------------------------- /lib/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/lib/railtie.rb -------------------------------------------------------------------------------- /spec/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/.rubocop.yml -------------------------------------------------------------------------------- /spec/foundation_rails_helper/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/foundation_rails_helper/configuration_spec.rb -------------------------------------------------------------------------------- /spec/foundation_rails_helper/flash_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/foundation_rails_helper/flash_helper_spec.rb -------------------------------------------------------------------------------- /spec/foundation_rails_helper/form_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/foundation_rails_helper/form_builder_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/support/.rubocop.yml -------------------------------------------------------------------------------- /spec/support/classes/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/support/classes/author.rb -------------------------------------------------------------------------------- /spec/support/classes/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/support/classes/book.rb -------------------------------------------------------------------------------- /spec/support/classes/genre.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/support/classes/genre.rb -------------------------------------------------------------------------------- /spec/support/mock_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgruhier/foundation_rails_helper/HEAD/spec/support/mock_rails.rb --------------------------------------------------------------------------------