├── .bundle └── config ├── .gitignore ├── .travis.yml ├── Gemfile ├── HISTORY.md ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── resque-meta.rb └── resque │ └── plugins │ ├── meta.rb │ └── meta │ ├── metadata.rb │ └── version.rb ├── resque-meta.gemspec └── test ├── meta_test.rb ├── redis-test.conf └── test_helper.rb /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_DISABLE_SHARED_GEMS: "1" 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dump.rdb 2 | doc/* 3 | pkg/* 4 | *.gem 5 | .bundle 6 | Gemfile.lock 7 | /tags 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/resque-meta.rb: -------------------------------------------------------------------------------- 1 | require 'resque/plugins/meta' 2 | -------------------------------------------------------------------------------- /lib/resque/plugins/meta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/lib/resque/plugins/meta.rb -------------------------------------------------------------------------------- /lib/resque/plugins/meta/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/lib/resque/plugins/meta/metadata.rb -------------------------------------------------------------------------------- /lib/resque/plugins/meta/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/lib/resque/plugins/meta/version.rb -------------------------------------------------------------------------------- /resque-meta.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/resque-meta.gemspec -------------------------------------------------------------------------------- /test/meta_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/test/meta_test.rb -------------------------------------------------------------------------------- /test/redis-test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/test/redis-test.conf -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmarlow/resque-meta/HEAD/test/test_helper.rb --------------------------------------------------------------------------------