sm808 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +23 -13
- data/lib/sm808/version.rb +1 -1
- data/sm808.gemspec +1 -1
- data/sm808.gif +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de3e4605f9fae4e5d777504a42e2dc5034d71c6b
|
|
4
|
+
data.tar.gz: a96abeec9e615aaac8a3477704d602f9f94809ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cffef4b5f59301178a491e918624b98965a893d6a710a023b8a69e2804f84d30234a6c37db8068f01edba479c80933642068a84daaeca4138ce4eb116288ab83
|
|
7
|
+
data.tar.gz: 7ac62250e11764ba45b0e8cc53c1b8c7167c582e61b1b99ef28f2a79a6c09c06cc185b2eea6ec4a93d3e2e9be9ebd22de8c46bdc3c6be5cf1cab4b3e38ee0b04
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,24 +1,34 @@
|
|
|
1
|
-
# Sm-808
|
|
2
|
-
-
|
|
1
|
+
# Sm-808: Drum Machine Sequencer
|
|
2
|
+
- _Programming a Sequencer for a Drum Machine_: A Ruby Implementation of the famous "four on the floor" rhythm pattern
|
|
3
|
+
- Overview of how to install:
|
|
4
|
+

|
|
3
5
|
|
|
4
|
-
|
|
5
|
-
## Setting up Sm-808
|
|
6
|
+
## Setting up Sm-808 locally
|
|
6
7
|
|
|
7
8
|
1. Download the gem locally
|
|
8
|
-
2.
|
|
9
|
-
3. `
|
|
9
|
+
2. This Ruby gem was developed using ruby 2.4.1.
|
|
10
|
+
3. `gem install bundler`
|
|
11
|
+
4. `bundle install`
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## Running Sm-808 locally:
|
|
10
15
|
|
|
11
|
-
|
|
16
|
+
- Run `ruby lib/sm808/cli.rb` from the root directory.
|
|
17
|
+
- Create your Drum Machine Sequencer by going through the interactive
|
|
18
|
+
terminal-based prompts
|
|
12
19
|
|
|
13
|
-
|
|
14
|
-
|
|
20
|
+
|
|
21
|
+
## Running the test-suite locally:
|
|
15
22
|
- For testing:
|
|
23
|
+
- this gem uses RSpec as its testing framework
|
|
16
24
|
- run `rspec spec` for the entire test-suite
|
|
17
|
-
- run `rspec spec/music_spec.rb` to run `music_spec.rb` file
|
|
18
|
-
|
|
19
|
-
## Development
|
|
25
|
+
- run `rspec spec/music_spec.rb` to run `music_spec.rb` spec file
|
|
20
26
|
|
|
21
|
-
|
|
27
|
+
## Install Sm808 globally
|
|
28
|
+
### _Feel free to skip locally setting up:_
|
|
29
|
+
1. `gem install sm808`
|
|
30
|
+
2. type `sm808` to run through the interactive terminal-based prompts
|
|
31
|
+
3. Enjoy your drum machine sequencer!
|
|
22
32
|
|
|
23
33
|
## License
|
|
24
34
|
|
data/lib/sm808/version.rb
CHANGED
data/sm808.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Drum Machine Sequencer}
|
|
13
13
|
spec.description = %q{Implements sequence for the famous four on the floor rhythm pattern.}
|
|
14
|
-
spec.homepage = "https://
|
|
14
|
+
spec.homepage = "https://en.wikipedia.org/wiki/Four_on_the_floor_(music)"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
if spec.respond_to?(:metadata)
|
data/sm808.gif
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sm808
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anonymous Backend Splice Applicant
|
|
@@ -150,7 +150,8 @@ files:
|
|
|
150
150
|
- lib/sm808/score.rb
|
|
151
151
|
- lib/sm808/version.rb
|
|
152
152
|
- sm808.gemspec
|
|
153
|
-
|
|
153
|
+
- sm808.gif
|
|
154
|
+
homepage: https://en.wikipedia.org/wiki/Four_on_the_floor_(music)
|
|
154
155
|
licenses:
|
|
155
156
|
- MIT
|
|
156
157
|
metadata:
|