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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abc9ab9f1d4009a4fa724c859dbf15c2686516e09f4138591b8660419896af10
4
- data.tar.gz: c8b1bf222ab819cad73b9fd881ed1e1ff75dd739129ae889f7129d9744f29080
3
+ metadata.gz: 76318203bd89d311cd5f47f98f5a9aa54319f31fd3348a6379cd936df0f7bca3
4
+ data.tar.gz: '0119488748d9ed82dc62cc0ecee83c91cd272176f9c701b651d36b0a627d02bc'
5
5
  SHA512:
6
- metadata.gz: 85c608fc9cbab44651e6be220ad47cdb3ea038f6fccdf19825ecb5befc5f45e9161463541cd143030aad374a32dd6bc37195a47d3ccc0ef0081de0896ae1458f
7
- data.tar.gz: e202347e9a4986f139899f773f6f3ae9ffa41fc4bf431eaf7b297d07cdeb9244f98bdf6590c02740c76f2443ad6cd2005b6d673c7ef4da072fdee66b3669ea46
6
+ metadata.gz: add11689e85abfc458a16a01e3266f95f7155f956545cf8c0012c361a41b7c715c9e8353a1100cbe8590e2fad041009d415d291b5f79d0fa1569a4f4b56130a6
7
+ data.tar.gz: e1a87fb642b03bfb90fea1195a25687dea6cfe99bc0db6e16e3eb063c8bb6aa8a9d563c432736e0bc32e9c5d9b089941eaf256e153b407a9f14d3d9dbe3c3a91
data/README.md CHANGED
@@ -1,12 +1,13 @@
1
- # Boarder
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 'boarder'
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 boarder
19
+ $ gem install boards
19
20
 
20
21
  ## Usage
21
22
 
22
- To create a new Colony project on your development machine.
23
+ To create a new Boards project on your development machine.
23
24
 
24
- $ boarder new <project_name>
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. Contributions welcome! Feel free to clone the repo in the meantime and submit a pull requests :-) .
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
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "boards/cli"
4
+
5
+ Boards::Cli.start(ARGV)
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 colony project, including boilerplate files and code.'
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
@@ -1,3 +1,3 @@
1
1
  module Boards
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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
data/bin/boards DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby -w
2
- puts "I'm an executable."
3
-
4
- require "boards/cli"
5
-
6
- Boards::Cli.start(ARGV)