football_cli 0.0.2 → 0.0.3

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: e16c26d5513c9ef9893b0a1f7957d57cbaf308e1
4
- data.tar.gz: 9ef62e52abbdcddf66c108ec8aa828573c8225f7
3
+ metadata.gz: 3e99fb1569e4b053d97a0fe5e784735f7044ed7f
4
+ data.tar.gz: 150f09e3f3dd0cdd84d58f2c2572bf6329c2a57b
5
5
  SHA512:
6
- metadata.gz: 09efbd06908e4fa2edcc8e95ea2caaf755937b81f414b27ad24fe11a5a47cc7bcf2abaa34f50450cbb4ea46cd69992441b01298a6a2860a4e18cb4bbfe89a134
7
- data.tar.gz: 57727eea956062bfb2af9e7bf152cd86e064ae232d49b88511fa3d96a39323dda7f7c438a8cfe8cdda0d8ca94b130ed41c974a5f8cdfa6633a1d9648026f14d9
6
+ metadata.gz: 0ebc108a1e1ec1d00201579c2730a005b15900136ca62feb6d06c33e15d535f3bca4f519cf94be5bf0e0c37ada48a60110105f87d72e5189d616a52a5b5f2988
7
+ data.tar.gz: adf18ade14634c1594f793a69598b7772add0ff303aed2e3f7d0e427c493fef02cf446009f52ed32977f30bb72eb65c7581c504e20a7cb1d0fac21013789e904
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- football_cli (0.0.1)
4
+ football_cli (0.0.3)
5
5
  football_ruby
6
6
  gli (= 2.16.0)
7
7
  rainbow
data/README.MD CHANGED
@@ -1,8 +1,10 @@
1
- ![](http://i.imgur.com/FLITgqs.jpg)
1
+ <p align="center">
2
+ <img src="http://i.imgur.com/FLITgqs.jpg">
3
+ </p>
2
4
 
3
5
  # Fottball CLI
4
6
 
5
- A command line interface for all the football data feeds in Ruby Edit
7
+ A command line interface for all the football data feeds in Ruby
6
8
 
7
9
  ## Installation
8
10
 
@@ -29,11 +29,15 @@ module FootballCli
29
29
  end
30
30
 
31
31
  def leagues_path
32
- File.join 'config', 'leagues.json'
32
+ File.join root, 'config', 'leagues.json'
33
33
  end
34
34
 
35
35
  def teams_path
36
- File.join 'config', 'teams.json'
36
+ File.join root, 'config', 'teams.json'
37
+ end
38
+
39
+ def root
40
+ File.expand_path '../../../', __FILE__
37
41
  end
38
42
  end
39
43
  end
@@ -1,3 +1,3 @@
1
1
  module FootballCli
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: football_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Said Kaldybaev