Skip to content

Documentation edits #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions Readme.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
1 change: 1 addition & 0 deletions split-export.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Gem::Specification.new do |s|
s.authors = ["Andrew Nesbitt"]
s.email = ["[email protected]"]
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'

Expand Down