# Nextcloud::Ruby Simple wrapper for Nextcloud API ## Installation Add this line to your application's Gemfile: ```ruby gem 'nextcloud-ruby' ``` And then execute: $ bundle Or install it yourself as: $ gem install nextcloud-ruby ## Usage Before you start using nextcloud-ruby you have to configure it. ```ruby Nextcloud::Ruby.configure do |config| config.dav_url = 'https://yournextcloudserver.com/remote.php/dav/' config.username = 'your nextcloud username' config.password = 'your nextcloud password' end ``` And enjoy its features. ### Directory #### Create a directory ```ruby Nextcloud::Ruby::Directory.create('relative/path/to/your/new/directory') ``` #### Delete a directory ```ruby Nextcloud::Ruby::Directory.delete('relative/path/to/your/directory') ``` #### Find a directory ```ruby Nextcloud::Ruby::Directory.find('relative/path/to/your/directory') ``` #### Set a directory tag ```ruby Nextcloud::Ruby::Directory.set_tag(directory,tag) ``` ### Tag #### Find tag ```ruby Nextcloud::Ruby::Tag.find(id) ``` #### All tags ```ruby Nextcloud::Ruby::Tag.all ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/nextcloud-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). ## Code of Conduct Everyone interacting in the Nextcloud::Ruby project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/nextcloud-ruby/blob/master/CODE_OF_CONDUCT.md).