gentle-scholar 2.0.0 → 2.0.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 +4 -4
- data/README.md +20 -14
- data/lib/gentle-scholar/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce65a3bc8c479924f3df32d182f17c5c15e23bd8
|
4
|
+
data.tar.gz: 53f1a91d07fd2ef0412d3e45ceec19e09dca7b63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c192aad613d9fce902912aa87a69b399e5e75fe2b398f98e08f010b9be89b8c393bb2cbe64bb8735c22dd5fee925640d8665c34eb6125a5e7656f1277165e2aa
|
7
|
+
data.tar.gz: 80855e67f69889ee011d1599010b3c99d6068326f0f4fb749a097f23322fcf266cfb3ffd746adf48d7fd00cd95ac9688bf0959a83e34dc884e95d1dc2d52c83b
|
data/README.md
CHANGED
@@ -23,20 +23,26 @@ Given a google scholar article such as:
|
|
23
23
|
|
24
24
|
Retrieve information by copying the author and article ID from the URL:
|
25
25
|
|
26
|
-
|
26
|
+
pub = GentleScholar::Publication.get_from_http('6WjiSOwAAAAJ:9yKSN-GCB0IC')
|
27
27
|
|
28
28
|
This returns:
|
29
29
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
30
|
+
=> {:cites=>14,
|
31
|
+
:cites_url=>
|
32
|
+
"http://scholar.google.com/scholar?oi=bibs&hl=en&oe=ASCII&cites=11777343089817755068",
|
33
|
+
:title=>
|
34
|
+
"Research Note\u0097Online Users' Switching Costs: Their Nature and Formation",
|
35
|
+
:article_url=>"http://pubsonline.informs.org/doi/abs/10.1287/isre.1100.0340",
|
36
|
+
:chart_url=>
|
37
|
+
"http://www.google.com/chart?chs=475x90&cht=bvs&chf=bg,s,e8f4f7&chco=1111cc&chbh=r,2.0,0.0&chxt=x,y&chxr=1,0,5,5&chd=t:100.0,80.0,100.0&chxl=0:|2012|2013|2014",
|
38
|
+
:gscholar_url=>
|
39
|
+
"http://scholar.google.com/citations?user=6WjiSOwAAAAJ&hl=en&oe=ASCII",
|
40
|
+
:authors=>[["Soumya", "Ray"], ["Sung", "S", "Kim"], ["James", "G", "Morris"]],
|
41
|
+
:date=>#<Date: 2012-03-01 ((2455988j,0s,0n),+0s,2299161j)>,
|
42
|
+
:journal=>"Information Systems Research",
|
43
|
+
:volume=>"23",
|
44
|
+
:issue=>"1",
|
45
|
+
:pages=>"197-213",
|
46
|
+
:publisher=>"INFORMS",
|
47
|
+
:description=>
|
48
|
+
"The highly competitive and rapidly changing market for online services is becoming increasingly effective at locking users in through the coercive effects of switching costs. Although the information systems field increasingly recognizes that switching costs plays a big part in enforcing loyalty, little is known about what factors users regard as switching costs or why they perceive these costs. Consequently, it is hard for online services to know what lock-in strategies to use and when to apply them. We address this problem by first ..."}
|