├── .gitignore ├── .repl_history ├── Gemfile ├── LICENSE ├── ParseModel.gemspec ├── README.md ├── Rakefile └── lib ├── ParseModel.rb └── ParseModel ├── Model.rb ├── User.rb ├── cloud.rb ├── query.rb └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/.gitignore -------------------------------------------------------------------------------- /.repl_history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/LICENSE -------------------------------------------------------------------------------- /ParseModel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/ParseModel.gemspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/ParseModel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/lib/ParseModel.rb -------------------------------------------------------------------------------- /lib/ParseModel/Model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/lib/ParseModel/Model.rb -------------------------------------------------------------------------------- /lib/ParseModel/User.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/lib/ParseModel/User.rb -------------------------------------------------------------------------------- /lib/ParseModel/cloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/lib/ParseModel/cloud.rb -------------------------------------------------------------------------------- /lib/ParseModel/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelevie/ParseModel/HEAD/lib/ParseModel/query.rb -------------------------------------------------------------------------------- /lib/ParseModel/version.rb: -------------------------------------------------------------------------------- 1 | module ParseModel 2 | VERSION = "0.0.6" 3 | end 4 | --------------------------------------------------------------------------------