top_free_apps_itunes 0.3.0 → 1.0.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 +4 -4
- data/README.md +6 -17
- data/lib/top_free_apps_itunes/app.rb +0 -10
- data/lib/top_free_apps_itunes/cli.rb +1 -2
- data/lib/top_free_apps_itunes/version.rb +1 -1
- data/top_free_apps_itunes-0.1.0.gem +0 -0
- data/top_free_apps_itunes-0.2.0.gem +0 -0
- data/top_free_apps_itunes-0.3.0.gem +0 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff6adb714d1b5f45c3d5e1ef3376a45d86db91e83de0d98f446f3d0cf5e017bd
|
|
4
|
+
data.tar.gz: 4f838264de7413bf885b59ff21f3ee576d412c169df5212b1bdd50dd11e39cb3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2006455ad827eecafdf4ef4ae011d4d72edf2a302e4bd166771480056f57de450d799ccb0e1e7d0e8d6dc096fe6a1df073cb695cba19958d3a6751cd8bd58fd0
|
|
7
|
+
data.tar.gz: cdca63391153e5f7d5cfb545c826e50596ea6710f21c145682fdcac373ce58713d3faee44f7a07a06c4ca9f289dcdc54e388bccb7266e208e3ec64bc52a50069
|
data/README.md
CHANGED
|
@@ -1,28 +1,17 @@
|
|
|
1
1
|
# TopFreeAppsItunes
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
This Ruby Gem provides a CLI to view the top 100 free apps in the App Store.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'top_free_apps_itunes'
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
And then execute:
|
|
7
|
+
$ gem install top_free_apps_itunes
|
|
16
8
|
|
|
17
|
-
$ bundle
|
|
18
|
-
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
|
|
21
|
-
$ gem install top_free_apps_itunes
|
|
22
9
|
|
|
23
10
|
## Usage
|
|
24
11
|
|
|
25
|
-
|
|
12
|
+
Type the command below and follow the on screen prompts.
|
|
13
|
+
|
|
14
|
+
$ top_free_apps_itunes
|
|
26
15
|
|
|
27
16
|
## Development
|
|
28
17
|
|
|
@@ -32,7 +21,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
32
21
|
|
|
33
22
|
## Contributing
|
|
34
23
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
24
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/irfanmak7/top_free_apps_itunes. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
36
25
|
|
|
37
26
|
## License
|
|
38
27
|
|
|
@@ -18,8 +18,7 @@ class CLI
|
|
|
18
18
|
puts "Please enter the number of the app to view its details or 'exit' to end the program:"
|
|
19
19
|
|
|
20
20
|
input = gets.chomp
|
|
21
|
-
|
|
22
|
-
binding.pry
|
|
21
|
+
|
|
23
22
|
#app = App.all[input.to_i - 1]
|
|
24
23
|
|
|
25
24
|
if input.to_i > 0 && input.to_i <=App.all.size
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: top_free_apps_itunes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Irfan Maknojia
|
|
@@ -104,6 +104,9 @@ files:
|
|
|
104
104
|
- lib/top_free_apps_itunes/cli.rb
|
|
105
105
|
- lib/top_free_apps_itunes/scraper.rb
|
|
106
106
|
- lib/top_free_apps_itunes/version.rb
|
|
107
|
+
- top_free_apps_itunes-0.1.0.gem
|
|
108
|
+
- top_free_apps_itunes-0.2.0.gem
|
|
109
|
+
- top_free_apps_itunes-0.3.0.gem
|
|
107
110
|
- top_free_apps_itunes.gemspec
|
|
108
111
|
homepage: ''
|
|
109
112
|
licenses:
|