├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── sekreto.rb └── sekreto │ ├── config.rb │ ├── railtie.rb │ └── version.rb ├── sekreto.gemspec └── spec ├── sekreto ├── config_spec.rb └── version_spec.rb ├── sekreto_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/sekreto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/lib/sekreto.rb -------------------------------------------------------------------------------- /lib/sekreto/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/lib/sekreto/config.rb -------------------------------------------------------------------------------- /lib/sekreto/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/lib/sekreto/railtie.rb -------------------------------------------------------------------------------- /lib/sekreto/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Sekreto 4 | VERSION = '0.5.1'.freeze 5 | end 6 | -------------------------------------------------------------------------------- /sekreto.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/sekreto.gemspec -------------------------------------------------------------------------------- /spec/sekreto/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/spec/sekreto/config_spec.rb -------------------------------------------------------------------------------- /spec/sekreto/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/spec/sekreto/version_spec.rb -------------------------------------------------------------------------------- /spec/sekreto_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/spec/sekreto_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autolist/sekreto/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------