kiwicourse 0.2.0 → 0.2.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
  SHA1:
3
- metadata.gz: 246d16f297ca76d8808e685baf302863fc9299f8
4
- data.tar.gz: 084cd47504741280261bd0a7c01b95c306018246
3
+ metadata.gz: 0ddb79d7ff7699e3e0300bd14f33ae2f032e9395
4
+ data.tar.gz: 1760386b2764212b77cc2705de993b72730f5bf5
5
5
  SHA512:
6
- metadata.gz: f8c8bca2444d784f19c0969ddbd7fe104c95eb5ee90c2d8b369584545e7ab0b85ddb9b742da882e73c2a180e450a638bd60955598aad4ae53fa8fb90af8ff89d
7
- data.tar.gz: 1ce54d883dd6d714cb7f78b0d588698bbe3e7c0e1fde57944b1ec2c7bee2f0c854fe0ac3317e610c8252a990edeefeb4bb81d917b0170ba555a63958a6d470f3
6
+ metadata.gz: 8a45d6a3f76a24dad55a50cfa33f383b2e819752d3b2028a9d2508fff4058568655095f84a2c51de9103b48a4a8132a804cc4863c610100bbcfea3a03c8ce498
7
+ data.tar.gz: 1f91d2eca9e946604a7bd6c79cab920374c8f2f74633056d157c6d2ee3670365a0c2de4738a5029f4a3b709c055fa3378bce4e8327a895bb629cd0e9f1eb92b0
data/README.md CHANGED
@@ -15,21 +15,19 @@ $ gem install kiwicourse
15
15
  ```
16
16
 
17
17
  Run it from the command line.
18
+
19
+ Search a course with a keyword
18
20
  ```sh
19
- $ coursesdesc
21
+ $ coursesdesc search cellular
22
+ 2015 細胞神經科學Cellular Neuroscience
20
23
  ```
21
24
 
22
- Screenshots
23
-
25
+ Open the course url in browser
24
26
  ```sh
25
- _________ _______ ____
26
- / __/ ___/ ____ / ___/ / / _/
27
- _\ \/ /__ /___/ / /__/ /___/ /
28
- /___/\___/ \___/____/___/
29
-
30
- > courses
27
+ $ coursesdesc open 科學計算
31
28
  ```
32
29
 
30
+
33
31
  Use it from your Ruby code:
34
32
  ````ruby
35
33
  require 'kiwicourse'
data/kiwicourse.gemspec CHANGED
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
4
4
  s.name = 'kiwicourse'
5
5
  s.version = CoursesDesc::VERSION
6
6
  s.date = CoursesDesc::DATE
7
- s.executables << 'coursesdesc'
7
+ s.executables << 'kiwicourse'
8
8
  s.summary = 'Course outline of Sharecourese'
9
9
  s.description = 'Get course name and url list from Sharecourese of NTHU.'
10
10
  s.authors = ['John Lin', 'Robert Chang', 'Vicky Lee', 'Sam Cheng']
@@ -1,5 +1,5 @@
1
1
  # Versioning
2
2
  module CoursesDesc
3
- VERSION = '0.2.0'
4
- DATE = '2015-10-15'
3
+ VERSION = '0.2.1'
4
+ DATE = '2015-10-16'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kiwicourse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Lin
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2015-10-15 00:00:00.000000000 Z
14
+ date: 2015-10-16 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: minitest
@@ -114,7 +114,7 @@ dependencies:
114
114
  description: Get course name and url list from Sharecourese of NTHU.
115
115
  email:
116
116
  executables:
117
- - coursesdesc
117
+ - kiwicourse
118
118
  extensions: []
119
119
  extra_rdoc_files: []
120
120
  files:
@@ -124,7 +124,7 @@ files:
124
124
  - LICENSE
125
125
  - README.md
126
126
  - Rakefile
127
- - bin/coursesdesc
127
+ - bin/kiwicourse
128
128
  - kiwicourse.gemspec
129
129
  - lib/coursesdesc.rb
130
130
  - lib/coursesdesc/courses.rb
@@ -153,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  version: '0'
154
154
  requirements: []
155
155
  rubyforge_project:
156
- rubygems_version: 2.5.0
156
+ rubygems_version: 2.4.8
157
157
  signing_key:
158
158
  specification_version: 4
159
159
  summary: Course outline of Sharecourese
File without changes