├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── ng-rails-csrf.rb └── ng-rails-csrf │ └── version.rb ├── ng-rails-csrf.gemspec └── vendor └── assets └── javascripts └── ng-rails-csrf.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /lib/ng-rails-csrf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/lib/ng-rails-csrf.rb -------------------------------------------------------------------------------- /lib/ng-rails-csrf/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/lib/ng-rails-csrf/version.rb -------------------------------------------------------------------------------- /ng-rails-csrf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/ng-rails-csrf.gemspec -------------------------------------------------------------------------------- /vendor/assets/javascripts/ng-rails-csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/ng-rails-csrf/HEAD/vendor/assets/javascripts/ng-rails-csrf.js --------------------------------------------------------------------------------