diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..95e0dd9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,18 @@ +# Contribute + +Source hosted at [GitHub](http://github.com/splitrb/split-export). +Report Issues/Feature requests on [GitHub Issues](http://github.com/splitrb/split-export/issues). + +Tests can be ran with `rake spec` + +Please conform to the [Code of Conduct](CODE_OF_CONDUCT.md). + +### Note on Patches/Pull Requests + + * Fork the project. + * Make your feature addition or bug fix. + * Add tests for it. This is important so I don't break it in a + future version unintentionally. + * Commit, do not mess with rakefile, version, or history. + (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) + * Send me a pull request. Bonus points for topic branches. \ No newline at end of file diff --git a/LICENSE b/LICENSE index 7fd5270..b2ebfbe 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2013 Andrew Nesbitt +Copyright (c) 2013-2018 Andrew Nesbitt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/Readme.mdown b/Readme.mdown index a00e116..76a83dc 100644 --- a/Readme.mdown +++ b/Readme.mdown @@ -38,13 +38,15 @@ This exports data for a single experiment, and breaks it down by group and goal: csv_data = Split::Export.experiment_to_csv("my_experiment") File.open('path/to/my.csv', 'w') {|f| f.write(csv_data) } -## Development +## Contribute Source hosted at [GitHub](http://github.com/splitrb/split-export). Report Issues/Feature requests on [GitHub Issues](http://github.com/splitrb/split-export/issues). Tests can be ran with `rake spec` +Please conform to the [Code of Conduct](CODE_OF_CONDUCT.md). + ### Note on Patches/Pull Requests * Fork the project. @@ -57,4 +59,4 @@ Tests can be ran with `rake spec` ## Copyright -Copyright (c) 2013 Andrew Nesbitt. See LICENSE for details. +Copyright (c) 2013-2018 Andrew Nesbitt. See LICENSE for details. diff --git a/split-export.gemspec b/split-export.gemspec index c341cf3..95db956 100644 --- a/split-export.gemspec +++ b/split-export.gemspec @@ -8,6 +8,7 @@ Gem::Specification.new do |s| s.authors = ["Andrew Nesbitt"] s.email = ["andrewnez@gmail.com"] s.homepage = "https://github.com/splitrb/split-export" + s.bug_tracker_uri = "https://github.com/splitrb/split-export/issues" s.summary = "Split extension to export your data" s.license = 'MIT'