Skip to content

Instantly share code, notes, and snippets.

@marzdgzmn
Last active September 15, 2018 20:53
Show Gist options
  • Save marzdgzmn/ea44b8473fe3f1a7ef0e6bb9760f0882 to your computer and use it in GitHub Desktop.
Save marzdgzmn/ea44b8473fe3f1a7ef0e6bb9760f0882 to your computer and use it in GitHub Desktop.
require "rise/mirror_manager/version"
require 'rise/mirror_manager/sync'
module Rise
module MirrorManager
# Your code goes here...
end
end
RSpec.describe Rise::MirrorManager::Sync do
2 it 'should return true' do
3 expect(true)
4 end
5 end
6
├── bin
│   ├── console
│   └── setup
├── CODE_OF_CONDUCT.md
├── Gemfile
├── Gemfile.lock
├── lib
│   └── rise
│   ├── mirror_manager
│   │   ├── sync
│   │   │   └── test.rb
│   │   ├── sync.rb
│   │   └── version.rb
│   └── mirror_manager.rb
├── LICENSE.txt
├── Rakefile
├── README.md
├── rise-mirror_manager.gemspec
└── spec
├── rise
│   └── mirror_manager
│   ├── sync
│   └── sync_spec.rb
└── spec_helper.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment