├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── app ├── public │ └── style.css └── views │ ├── iam_limit_exceeded_error.erb │ ├── index.erb │ ├── keys.erb │ ├── layout.erb │ ├── new_key.erb │ └── no_user_error.erb ├── bin ├── console └── setup ├── config.ru ├── exe └── himeko-clean-roles ├── himeko.gemspec ├── lib ├── himeko.rb └── himeko │ ├── app.rb │ ├── role_manager.rb │ ├── user_mimicking_role.rb │ └── version.rb └── spec ├── spec_helper.rb └── user_mimicking_role_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/Rakefile -------------------------------------------------------------------------------- /app/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/app/public/style.css -------------------------------------------------------------------------------- /app/views/iam_limit_exceeded_error.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/app/views/iam_limit_exceeded_error.erb -------------------------------------------------------------------------------- /app/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/app/views/index.erb -------------------------------------------------------------------------------- /app/views/keys.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/app/views/keys.erb -------------------------------------------------------------------------------- /app/views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/app/views/layout.erb -------------------------------------------------------------------------------- /app/views/new_key.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/app/views/new_key.erb -------------------------------------------------------------------------------- /app/views/no_user_error.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/app/views/no_user_error.erb -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/config.ru -------------------------------------------------------------------------------- /exe/himeko-clean-roles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/exe/himeko-clean-roles -------------------------------------------------------------------------------- /himeko.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/himeko.gemspec -------------------------------------------------------------------------------- /lib/himeko.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/lib/himeko.rb -------------------------------------------------------------------------------- /lib/himeko/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/lib/himeko/app.rb -------------------------------------------------------------------------------- /lib/himeko/role_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/lib/himeko/role_manager.rb -------------------------------------------------------------------------------- /lib/himeko/user_mimicking_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/lib/himeko/user_mimicking_role.rb -------------------------------------------------------------------------------- /lib/himeko/version.rb: -------------------------------------------------------------------------------- 1 | module Himeko 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/user_mimicking_role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/himeko/HEAD/spec/user_mimicking_role_spec.rb --------------------------------------------------------------------------------