├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── gemfiles ├── Gemfile.rails-3.0.x ├── Gemfile.rails-3.1.x └── Gemfile.rails-3.2.x ├── init.rb ├── lib ├── sudo_attributes.rb └── sudo_attributes │ └── version.rb ├── spec ├── spec.opts ├── spec_helper.rb └── sudo_attributes_spec.rb └── sudo_attributes.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/Gemfile.rails-3.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/gemfiles/Gemfile.rails-3.0.x -------------------------------------------------------------------------------- /gemfiles/Gemfile.rails-3.1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/gemfiles/Gemfile.rails-3.1.x -------------------------------------------------------------------------------- /gemfiles/Gemfile.rails-3.2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/gemfiles/Gemfile.rails-3.2.x -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require "sudo_attributes" -------------------------------------------------------------------------------- /lib/sudo_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/lib/sudo_attributes.rb -------------------------------------------------------------------------------- /lib/sudo_attributes/version.rb: -------------------------------------------------------------------------------- 1 | module SudoAttributes 2 | VERSION = "1.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/sudo_attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/spec/sudo_attributes_spec.rb -------------------------------------------------------------------------------- /sudo_attributes.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerlington/sudo_attributes/HEAD/sudo_attributes.gemspec --------------------------------------------------------------------------------