-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1873df
commit fae4535
Showing
4 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ Rake::TestTask.new do |t| | |
end | ||
|
||
desc "Run tests" | ||
task :default => :test | ||
task :default => :test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'brokjson' | ||
s.version = '1.0.0' | ||
s.summary = 'BrokJSON is a space-saving alternative to GeoJSON' | ||
s.name = 'brokjson' | ||
s.version = '1.0.0' | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Hazimi Asyraf'] | ||
s.email = '[email protected]' | ||
s.summary = 'BrokJSON is a space-saving alternative to GeoJSON' | ||
s.description = 'BrokJSON is a space-saving alternative to GeoJSON. Convert GeoJSON to BrokJSON and vice versa' | ||
s.authors = ['Hazimi Asyraf'] | ||
s.email = '[email protected]' | ||
s.files = ['lib/brokjson.rb'] | ||
s.test_files = ['test/test_brokjson.rb'] | ||
s.homepage = 'https://rubygems.org/gems/brokjson' | ||
s.license = 'MIT' | ||
end | ||
s.homepage = 'https://github.com/jimmyasyraf/brokJSON_rb' | ||
s.license = 'MIT' | ||
|
||
s.required_ruby_version = '>= 2.6' | ||
|
||
s.files = ['lib/brokjson.rb'] | ||
s.test_files = ['test/test_brokjson.rb'] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,4 +170,4 @@ def self.brok2geo(brok) | |
|
||
return geo | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,4 +76,4 @@ def sample_brokjson | |
] | ||
} | ||
end | ||
end | ||
end |