Skip to content

Commit

Permalink
Merge pull request #6 from geocrystal/change-project-name
Browse files Browse the repository at this point in the history
change project name
  • Loading branch information
mamantoha authored Mar 29, 2020
2 parents 10b9e98 + c6296f6 commit f64acdd
Show file tree
Hide file tree
Showing 19 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
project_name: geo_json
project_name: geojson
local_dir: docs
on:
branch: master
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# GeoJSON

[![Build Status](https://travis-ci.org/geocrystal/geo_json.svg?branch=master)](https://travis-ci.org/geocrystal/geo_json)
[![Docs](https://img.shields.io/badge/docs-available-brightgreen.svg)](https://geocrystal.github.io/geo_json/)
[![License](https://img.shields.io/github/license/geocrystal/geo_json.svg)](https://github.com/geocrystal/geo_json/blob/master/LICENSE)
[![Build Status](https://travis-ci.org/geocrystal/geojson.svg?branch=master)](https://travis-ci.org/geocrystal/geojson)
[![Docs](https://img.shields.io/badge/docs-available-brightgreen.svg)](https://geocrystal.github.io/geojson/)
[![License](https://img.shields.io/github/license/geocrystal/geojson.svg)](https://github.com/geocrystal/geojson/blob/master/LICENSE)

Crystal library for reading and writing [GeoJSON](https://tools.ietf.org/html/rfc7946)

Expand All @@ -18,14 +18,14 @@ Add the dependency to your `shard.yml`:

```yaml
dependencies:
geo_json:
github: geocrystal/geo_json
geojson:
github: geocrystal/geojson
```
and run `shards install`

```crystal
require "geo_json"
require "geojson"
```

## Position
Expand Down Expand Up @@ -419,7 +419,7 @@ point.json_unmapped = json_unmapped

## Contributing

1. Fork it (<https://github.com/geocrystal/geo_json/fork>)
1. Fork it (<https://github.com/geocrystal/geojson/fork>)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: geo_json
name: geojson
version: 0.3.0

authors:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion spec/spec_helper.cr
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
require "spec"
require "../src/geo_json"
require "../src/geojson"
17 changes: 0 additions & 17 deletions src/geo_json.cr

This file was deleted.

17 changes: 17 additions & 0 deletions src/geojson.cr
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
require "json"
require "./geojson/exception"
require "./geojson/object"
require "./geojson/coordinates"
require "./geojson/point"
require "./geojson/multi_point"
require "./geojson/line_string"
require "./geojson/multi_line_string"
require "./geojson/polygon"
require "./geojson/multi_polygon"
require "./geojson/geometry_collection"
require "./geojson/feature"
require "./geojson/feature_collection"

module GeoJSON
VERSION = {{ `shards version #{__DIR__}`.chomp.stringify }}
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f64acdd

Please sign in to comment.