activerecord-postgres-hstore 0.5.3 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. data/.gitignore +25 -0
  2. data/.travis.yml +1 -1
  3. data/Gemfile +4 -10
  4. data/README.md +33 -6
  5. data/Rakefile +3 -18
  6. data/VERSION +1 -1
  7. data/activerecord-postgres-hstore.gemspec +22 -128
  8. data/lib/activerecord-postgres-hstore/coder.rb +1 -1
  9. data/spec/{activerecord-coders-hstore.rb → activerecord-coders-hstore_spec.rb} +4 -0
  10. metadata +14 -120
  11. data/Gemfile.lock +0 -121
  12. data/app/.gitignore +0 -4
  13. data/app/Gemfile +0 -28
  14. data/app/Gemfile.lock +0 -81
  15. data/app/README +0 -256
  16. data/app/Rakefile +0 -7
  17. data/app/app/controllers/application_controller.rb +0 -3
  18. data/app/app/helpers/application_helper.rb +0 -2
  19. data/app/app/models/bar.rb +0 -3
  20. data/app/app/models/foo.rb +0 -3
  21. data/app/app/views/layouts/application.html.erb +0 -14
  22. data/app/bench.rb +0 -76
  23. data/app/bench_results.txt +0 -13
  24. data/app/config.ru +0 -4
  25. data/app/config/application.rb +0 -43
  26. data/app/config/boot.rb +0 -13
  27. data/app/config/database.yml +0 -51
  28. data/app/config/environment.rb +0 -5
  29. data/app/config/environments/development.rb +0 -22
  30. data/app/config/environments/production.rb +0 -49
  31. data/app/config/environments/test.rb +0 -35
  32. data/app/config/initializers/activerecord_postgres_hstore.rb +0 -0
  33. data/app/config/initializers/backtrace_silencers.rb +0 -7
  34. data/app/config/initializers/inflections.rb +0 -10
  35. data/app/config/initializers/mime_types.rb +0 -5
  36. data/app/config/initializers/secret_token.rb +0 -7
  37. data/app/config/initializers/session_store.rb +0 -8
  38. data/app/config/locales/en.yml +0 -5
  39. data/app/config/routes.rb +0 -58
  40. data/app/db/development_structure.sql +0 -580
  41. data/app/db/migrate/20100906191151_add_hstore.rb +0 -276
  42. data/app/db/migrate/20100906191457_create_foos.rb +0 -13
  43. data/app/db/migrate/20100906191506_create_bars.rb +0 -12
  44. data/app/db/schema.rb +0 -27
  45. data/app/db/seeds.rb +0 -7
  46. data/app/doc/README_FOR_APP +0 -2
  47. data/app/generate_copy_files.rb +0 -47
  48. data/app/lib/tasks/.gitkeep +0 -0
  49. data/app/public/404.html +0 -26
  50. data/app/public/422.html +0 -26
  51. data/app/public/500.html +0 -26
  52. data/app/public/favicon.ico +0 -0
  53. data/app/public/images/rails.png +0 -0
  54. data/app/public/index.html +0 -262
  55. data/app/public/javascripts/.gitkeep +0 -0
  56. data/app/public/javascripts/application.js +0 -0
  57. data/app/public/robots.txt +0 -5
  58. data/app/public/stylesheets/.gitkeep +0 -0
  59. data/app/script/rails +0 -6
  60. data/app/test/performance/browsing_test.rb +0 -9
  61. data/app/test/test_helper.rb +0 -6
  62. data/app/test/unit/bar_test.rb +0 -133
  63. data/app/test/unit/foo_test.rb +0 -8
  64. data/app/vendor/plugins/.gitkeep +0 -0
@@ -1,8 +0,0 @@
1
- require 'test_helper'
2
-
3
- class FooTest < ActiveSupport::TestCase
4
- # Replace this with your real tests.
5
- test "the truth" do
6
- assert true
7
- end
8
- end
File without changes