├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── active_admin_theme.gemspec ├── app └── assets │ └── stylesheets │ └── wigu │ └── active_admin_theme.scss ├── img └── wigu.png ├── lib ├── active_admin_theme.rb └── active_admin_theme │ └── version.rb └── package.json /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /active_admin_theme.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/active_admin_theme.gemspec -------------------------------------------------------------------------------- /app/assets/stylesheets/wigu/active_admin_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/app/assets/stylesheets/wigu/active_admin_theme.scss -------------------------------------------------------------------------------- /img/wigu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/img/wigu.png -------------------------------------------------------------------------------- /lib/active_admin_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/lib/active_admin_theme.rb -------------------------------------------------------------------------------- /lib/active_admin_theme/version.rb: -------------------------------------------------------------------------------- 1 | module ActiveAdminTheme 2 | VERSION = "1.1.4" 3 | end 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeadmin-plugins/active_admin_theme/HEAD/package.json --------------------------------------------------------------------------------