hublingo 0.0.1 → 0.0.2
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 +8 -8
- data/README.md +19 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ODI0NDY5MGExMzQyMWQ4MmEyMzE4YjNkZDJiNGZmOGNjMDFiZGM5Yw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MTNhMzE5NDE4ZmI4ZjljMzVmZDZhZmIyMzVmMzUwZjg4OTkyNTYzMw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MGQ5ZmNiZjg0NTAwZGIyMDZlMjVjZWUyNDdlOWU0YWFhZDZhNWEzMjE5M2Vj
|
|
10
|
+
MDYxZWUzY2RiMjRjOGQ0ZGI5MDM1NWUxMWYyYTUzZTdkMmRkOGUzOTdkNDRl
|
|
11
|
+
NGU3Njk5OWM2NTE2M2Q1OTUwYmI2MTFjODMwZmM0ZjdiYWNmMjU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjNkMGM2MzkxN2ZiZGNjMDlhY2VhMGZlMmMyZWJjNjM4NzhiZDNkOWFiNGVh
|
|
14
|
+
NTcwOGZlMDJjYTU2ODE3MTdjYzhlZTBmN2IzYWVjNWZkOTllNDZkOTM5ZWZi
|
|
15
|
+
OGU0YzhhNDgwMTg2ZGZmY2FkODdmNjIyZmUwMDhkOTVjYmQ1NzA=
|
data/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
## HUBLINGO ##
|
|
2
|
+
|
|
3
|
+
A fun project to retrieve the favourite languages of Github users.
|
|
4
|
+
|
|
5
|
+
Use inside your favourite Rails/Sinatra/Rack application.
|
|
6
|
+
|
|
7
|
+
You can also use the gem in irb/pry as follows:
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
require 'hublingo'
|
|
11
|
+
hub = Hublingo.new
|
|
12
|
+
hub.lingo('buddhamagnet')
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
NOTES:
|
|
16
|
+
|
|
17
|
+
This whole project, the gem and application, was completed in 3 1/2 hours.
|
|
18
|
+
|
|
19
|
+
I published it as a gem for giggles only. Hence no tests!
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hublingo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dave Goodchild
|
|
@@ -32,6 +32,7 @@ extensions: []
|
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
34
|
- lib/hublingo.rb
|
|
35
|
+
- README.md
|
|
35
36
|
homepage: http://github.com/buddhamagnet/hublingo
|
|
36
37
|
licenses:
|
|
37
38
|
- MIT
|