1. 18 Dec, 2019 5 commits
    • Replace soft-deprecated constant `HashWithIndifferentAccess` to… · a05e4586
      naari3 authored
      Replace soft-deprecated constant `HashWithIndifferentAccess` to `ActiveSupport::HashWithIndifferentAccess` (#699)
      
    • Delete TODO.md (#700) · a91b65bf
      Andrew W. Lee authored
      Removing `TODO.md` as prior to renaming it hasn't been touched in 5 years. 
      
      See https://github.com/ctran/annotate_models/commits/v3.0.3/TODO.rdoc
    • Tidy README (#701) · a631f5ad
      Andrew W. Lee authored
      * Fix instances of `additional file patterns` in README
      
      Other CLI flags are using dash, so using `--additional-file-patterns` notation to keep it similar to others.
      
      * Tidy: Replace `*` with `*`
      
      Doing some tidying now that we switched from RDoc to markdown.
    • [Fix #430] Handle columns from activerecord-postgis-adapter (#694) · c13fe49c
      inkstak authored
      Same problem returned by @janosrusiczki in #430
      
      Spatial columns with activerecord-postgis-adapter (5.2.2) are not displayed nice
      
      ```
      # name           :string(3)
      # active         :boolean          default(FALSE), not null
      # geom           :geometry({:srid= geometry, 4326
      ```
      
      That's come from activerecord-postgis-adapter, with redefined columns as such :
      
      ``` 
      #<ActiveRecord::ConnectionAdapters::PostGIS::SpatialColumn 
        @sql_type="geometry(Geometry,4326)",
        @geo_type="Geometry",
        @geometric_type=RGeo::Feature::Geometry,
        @srid=4326,
        @limit={:srid=>4326, :type=>"geometry"}
        [...]
      >
      ```
      
      This fix displays them like this :
      
      ```
      # name           :string(3)
      # active         :boolean          default(FALSE), not null
      # geometry       :geometry         geometry, 4326
      ```
      
      Another possibility would have been to display them as below, but it involves a lot of extra-spaces for other columns.
      
      ```
      # name           :string(3)
      # active         :boolean                   default(FALSE), not null
      # geometry       :geometry(Geometry, 4326)
      ```
  2. 17 Dec, 2019 2 commits
  3. 02 Dec, 2019 3 commits
  4. 09 Nov, 2019 9 commits
  5. 31 Oct, 2019 1 commit
  6. 06 Oct, 2019 1 commit
  7. 05 Oct, 2019 4 commits
  8. 03 Oct, 2019 1 commit
  9. 02 Oct, 2019 2 commits
  10. 01 Oct, 2019 1 commit
  11. 30 Sep, 2019 1 commit
  12. 29 Sep, 2019 3 commits
  13. 28 Sep, 2019 1 commit
  14. 27 Sep, 2019 1 commit
  15. 26 Sep, 2019 1 commit
  16. 16 Sep, 2019 1 commit
  17. 03 Sep, 2019 3 commits