classroom-cli 0.1.0.pre.a → 0.1.0

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
  SHA1:
3
- metadata.gz: 30da0e3aa70c377b5b5b2ded5c07a3717d13e8a4
4
- data.tar.gz: 9043f999396339080ffbc2fbce145b901a84a407
3
+ metadata.gz: 8d2c70fa18568c63a8a7baa0e87713970e4cffca
4
+ data.tar.gz: 18de0a64583c5d19e7c5947d6d0c7b0c06c9b183
5
5
  SHA512:
6
- metadata.gz: 31706cd725ce057971d9bcfbb39f0fe0a6ab444ebca7a4c14c4f3cb643782bfd78edbd61d0a2f5637d5e51daee5a4cc56e72c8966c23f1c76b994eea936e0de7
7
- data.tar.gz: a72d42317de6bb1cb620fa16684faf9ef90630b78c4af8812e9271a4fdb66beb0dc32a2af6918704944818b7be541c5ec9b2f3e086ca6da36980abfc53414f05
6
+ metadata.gz: 4df1206bfa5452bbc1c952b83350e4b8962463f4750f4eb4dbc12cfb56e19f7a44a0a29103093292d59aa5cf0e8ca163e8f847e8f7adb4f4034988a4e171ce22
7
+ data.tar.gz: c21a82790b46c2c1a9aad26338455993c2af8d1cbba806a785b50ed5c42a5d1561a70885171488bca6d4d9811f059935f1ac973828e2b3fd501a1b0e9ff2710d
data/.gitignore CHANGED
@@ -9,5 +9,3 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
-
13
- *.gem
data/README.md CHANGED
@@ -22,21 +22,7 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- ### Cloning
26
-
27
- The clone command will clone a set of repositories at once. The set of repositories is defined in a `projects.yml` file.
28
-
29
- ```
30
- $ classroom clone
31
- ```
32
-
33
- add a `projects.yml` file to your project directory containing the following example content:
34
-
35
- ```yml
36
- projects:
37
- - https://github.com/courseabc/xyz
38
- - https://github.com/courseabc/opq
39
- ```
25
+ TODO: Write usage instructions here
40
26
 
41
27
  ## Development
42
28
 
Binary file
@@ -11,14 +11,7 @@ module Classroom
11
11
 
12
12
  options = {}
13
13
  cli = OptionParser.new do |opts|
14
- opts.banner =
15
- " ___ _ \n"\
16
- " / __\\| | __ _ ___ ___ _ __ ___ ___ _ __ ___ \n"\
17
- " / / | | / _` |/ __|/ __|| '__| / _ \\ / _ \\ | '_ ` _ \\ \n"\
18
- " / /___ | || (_| |\\__ \\\\__ \\| | | (_) || (_) || | | | | |\n"\
19
- " \\____/ |_| \\__,_||___/|___/|_| \\___/ \\___/ |_| |_| |_|\n"\
20
- "\n"\
21
- "Usage: classroom [options]"
14
+ opts.banner = "Usage: classroom [options]"
22
15
 
23
16
  opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
24
17
  options[:verbose] = v
@@ -1,10 +1,8 @@
1
- require "classroom/version"
2
-
3
1
  module Classroom
4
2
  module Commands
5
3
  class Version
6
4
  def initialize options
7
- puts Classroom::VERSION
5
+ puts "Hello from Version !!!"
8
6
  end
9
7
 
10
8
  def self.optsparser
@@ -1,3 +1,3 @@
1
1
  module Classroom
2
- VERSION = "0.1.0-a"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: classroom-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.a
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sille Van Landschoot
@@ -69,6 +69,7 @@ files:
69
69
  - Rakefile
70
70
  - bin/console
71
71
  - bin/setup
72
+ - classroom-cli-0.1.0.gem
72
73
  - classroom-cli.gemspec
73
74
  - exe/classroom
74
75
  - lib/classroom/cli.rb
@@ -92,9 +93,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
92
93
  version: '0'
93
94
  required_rubygems_version: !ruby/object:Gem::Requirement
94
95
  requirements:
95
- - - ">"
96
+ - - ">="
96
97
  - !ruby/object:Gem::Version
97
- version: 1.3.1
98
+ version: '0'
98
99
  requirements: []
99
100
  rubyforge_project:
100
101
  rubygems_version: 2.5.2