boards 0.1.0 → 0.1.1
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/README.md +7 -6
- data/exe/boards +5 -0
- data/lib/boards/cli.rb +1 -1
- data/lib/boards/version.rb +1 -1
- metadata +4 -3
- data/bin/boards +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76318203bd89d311cd5f47f98f5a9aa54319f31fd3348a6379cd936df0f7bca3
|
4
|
+
data.tar.gz: '0119488748d9ed82dc62cc0ecee83c91cd272176f9c701b651d36b0a627d02bc'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: add11689e85abfc458a16a01e3266f95f7155f956545cf8c0012c361a41b7c715c9e8353a1100cbe8590e2fad041009d415d291b5f79d0fa1569a4f4b56130a6
|
7
|
+
data.tar.gz: e1a87fb642b03bfb90fea1195a25687dea6cfe99bc0db6e16e3eb063c8bb6aa8a9d563c432736e0bc32e9c5d9b089941eaf256e153b407a9f14d3d9dbe3c3a91
|
data/README.md
CHANGED
@@ -1,12 +1,13 @@
|
|
1
|
-
#
|
1
|
+
# Boards
|
2
2
|
|
3
3
|
The goal is to create a gem that facilitates the remote programming of Raspberry Pis. In particular - to develop a user friendly rubyesque DSL to describe the setup of a Raspberry Pi board.
|
4
|
+
|
4
5
|
## Installation
|
5
6
|
|
6
7
|
Add this line to your application's Gemfile:
|
7
8
|
|
8
9
|
```ruby
|
9
|
-
gem '
|
10
|
+
gem 'boards'
|
10
11
|
```
|
11
12
|
|
12
13
|
And then execute:
|
@@ -15,17 +16,17 @@ And then execute:
|
|
15
16
|
|
16
17
|
Or install it yourself as:
|
17
18
|
|
18
|
-
$ gem install
|
19
|
+
$ gem install boards
|
19
20
|
|
20
21
|
## Usage
|
21
22
|
|
22
|
-
To create a new
|
23
|
+
To create a new Boards project on your development machine.
|
23
24
|
|
24
|
-
$
|
25
|
+
$ boards new <project_name>
|
25
26
|
|
26
27
|
## Contributing
|
27
28
|
|
28
|
-
This proejct is very new :-) . First commit on Sat 29/07/2019.
|
29
|
+
Contributions welcome! This proejct is very new :-) . First commit on Sat 29/07/2019. Feel free to clone the repo in the meantime and submit a pull requests :-) .
|
29
30
|
|
30
31
|
TODO: An online location for easy discussion of issues.
|
31
32
|
|
data/exe/boards
ADDED
data/lib/boards/cli.rb
CHANGED
@@ -2,7 +2,7 @@ require "thor"
|
|
2
2
|
module Boards
|
3
3
|
class Cli < Thor
|
4
4
|
|
5
|
-
desc 'new NAME', 'generates a new directory named NAME for a new
|
5
|
+
desc 'new NAME', 'generates a new directory named NAME for a new boards project, including stub files and boilerplate code.'
|
6
6
|
def new(name)
|
7
7
|
puts "Ahoy! You would like to generate a new project called #{name}!"
|
8
8
|
end
|
data/lib/boards/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: boards
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Irial O'Sullivan
|
@@ -70,7 +70,8 @@ description: A DSL and toolkit that allows programmers to specify setup of Raspb
|
|
70
70
|
Pis remotely.
|
71
71
|
email:
|
72
72
|
- irialosullivan@gmail.com
|
73
|
-
executables:
|
73
|
+
executables:
|
74
|
+
- boards
|
74
75
|
extensions: []
|
75
76
|
extra_rdoc_files: []
|
76
77
|
files:
|
@@ -84,10 +85,10 @@ files:
|
|
84
85
|
- LICENSE.txt
|
85
86
|
- README.md
|
86
87
|
- Rakefile
|
87
|
-
- bin/boards
|
88
88
|
- bin/console
|
89
89
|
- bin/setup
|
90
90
|
- boards.gemspec
|
91
|
+
- exe/boards
|
91
92
|
- lib/boards.rb
|
92
93
|
- lib/boards/cli.rb
|
93
94
|
- lib/boards/version.rb
|