tcs-handles-aggregator 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YWZkOGUxMDhhOGMxMzVjY2VkYmUzZDBkNGVhNjkxZjE3ZGMzYTZkMA==
5
+ data.tar.gz: !binary |-
6
+ ZTMxZTEwYjA0MTY4N2IyNWUwYzliZDQzNDI4MTA4YmYyYTllN2VkZA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZTI1ZjVkYmZhMjhkODg5OTkzYmYyMzYwMWM1OWZhZGZlMmE5NWYzZGY0ZTJh
10
+ OWZjZTc2YjFhZTczMmIwNzA1ZjFkYmJjNTk0NzgyMDc5M2E4NTA0Zjg4Njkx
11
+ MTRlYTU1YzdmM2YyODI5NGQ2MzJmMWYxYWIxNzI5ZjJhNWI0ZWY=
12
+ data.tar.gz: !binary |-
13
+ YmY3ZGI0YWFiZjRjMzQzODlkMjlhYjBkMDU5MGMxZDU3MDRmZjUzYjE2MTYx
14
+ NjAwZGE4Mzk5ZWRhOWQyOGVhZDNiYjE4ZjJkMjE3ODBkZTllMDQyNDQ0YjE1
15
+ MzA1YzVlYzQ5YjgwMDQwOTMwNTJjODI3Mzc3ZjQ2NWM5NTNiYTc=
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,57 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ tcs-handles-aggregator (0.0.1)
5
+ awesome_print
6
+ twitter
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ addressable (2.3.5)
12
+ atomic (1.1.14)
13
+ awesome_print (1.2.0)
14
+ buftok (0.2.0)
15
+ diff-lcs (1.2.5)
16
+ equalizer (0.0.9)
17
+ faraday (0.9.0)
18
+ multipart-post (>= 1.2, < 3)
19
+ http (0.5.0)
20
+ http_parser.rb
21
+ http_parser.rb (0.6.0)
22
+ json (1.8.1)
23
+ memoizable (0.4.0)
24
+ thread_safe (~> 0.1.3)
25
+ multipart-post (2.0.0)
26
+ naught (1.0.0)
27
+ rake (10.1.1)
28
+ rspec (2.14.1)
29
+ rspec-core (~> 2.14.0)
30
+ rspec-expectations (~> 2.14.0)
31
+ rspec-mocks (~> 2.14.0)
32
+ rspec-core (2.14.7)
33
+ rspec-expectations (2.14.5)
34
+ diff-lcs (>= 1.1.3, < 2.0)
35
+ rspec-mocks (2.14.6)
36
+ simple_oauth (0.2.0)
37
+ thread_safe (0.1.3)
38
+ atomic
39
+ twitter (5.7.1)
40
+ addressable (~> 2.3)
41
+ buftok (~> 0.2.0)
42
+ equalizer (~> 0.0.9)
43
+ faraday (~> 0.9.0)
44
+ http (~> 0.5.0)
45
+ http_parser.rb (~> 0.6.0)
46
+ json (~> 1.8)
47
+ memoizable (~> 0.4.0)
48
+ naught (~> 1.0)
49
+ simple_oauth (~> 0.2.0)
50
+
51
+ PLATFORMS
52
+ ruby
53
+
54
+ DEPENDENCIES
55
+ rake
56
+ rspec
57
+ tcs-handles-aggregator!
data/Readme.md ADDED
@@ -0,0 +1,173 @@
1
+ #TCS Handles Aggregator
2
+
3
+ A Ruby Gem to Aggregate All tweets of [TCS](www.tcs.com) and TCS Activities related Official Handles.
4
+
5
+ **Why just TCS?**
6
+
7
+ We work here :neckbeard: !
8
+
9
+ But don't worry, it will still work for your personal account too :+1:
10
+
11
+
12
+ ## Installation
13
+
14
+ gem install tcs-handles-aggregator
15
+
16
+ ##Usage
17
+
18
+ To connect to Twitter you will need to register your Application to twitter [you can register here](https://apps.twitter.com/app/new) and you will be provided by a `YOUR_CONSUMER_KEY` and `YOUR_CONSUMER_SECRET`
19
+
20
+ $ irb
21
+ 1.9.3p448 :002 > require 'tcs-handles-aggregator'
22
+ => true
23
+ 1.9.3p448 :003 > client = THA::Connection.new({consumer_key: 'YOUR_CONSUMER_KEY',consumer_secret: 'YOUR_CONSUMER_SECRET'})
24
+ => #<THA::Connection:0x007fd9a3a107a0 @consumer_key="xxxxxxxxxxx", @consumer_secret="xxxxxxxxxxxxx">
25
+ 1.9.3p448 :004 >
26
+
27
+ 1.9.3p448 :004 > fetcher = THA::Fetcher.new({connection: client})
28
+ => #<THA::Fetcher:0x007fd9a406a498 @connection=#<THA::Connection:0x007fd9a3a107a0 @consumer_key="xxxxxxxxxxx", @consumer_secret="xxxxxxxxxxxxx">, @users=["TCS_News", "nycmarathon", "TCS_Oracle", "TCS_SAP", "TCS_SFDC", "TCSITWiz", "iONSMECloudERP", "TCSWorld10K"]>
29
+ 1.9.3p448 :005 >
30
+
31
+ Get All the tweet by this
32
+
33
+ fetcher.get
34
+
35
+ The Above will Give out results of all the TCS Official handles. Currently following handles are supported by default
36
+
37
+ - TCS_News
38
+ - nycmarathon
39
+ - TCS_Oracle
40
+ - TCS_SAP
41
+ - TCS_SFDC
42
+ - TCSITWiz
43
+ - iONSMECloudERP
44
+ - TCSWorld10K'
45
+
46
+ The Following will be the kind of output (It's just a Subset printed below)
47
+
48
+ {
49
+ "TCS_News" => [
50
+ [0] "TCS is recognized as Leader and Star Performer in #insurance BPO by @EverestGroup http://t.co/7wRK6NBdoE",
51
+ [1] "TCS partners with @QantasAirways to improve alignment of IT with business needs &amp; enhance productivity. http://t.co/CwVrJ3oEBQ",
52
+ [2] "Ever missed a cricket match due to harrowing billing experiences at the supermarket? Not anymore. Read how. http://t.co/ZtNfDsi1z6 #retail",
53
+ [3] "Correction: TCS has been certified as a Top Employer Australia 2014.",
54
+ [4] "A disruptor, ideas person, or an inspiring business head? Embrace co-innovation anyway. http://t.co/2qvr8spnbB #TCSInnovation",
55
+ [5] "TCS has been certified as the Top Employer Australia 2014 by @TopEmployer Institute http://t.co/l6GFa8vBgp http://t.co/uEOWEWplYh",
56
+ [6] "What causes disruptive innovation – Tech? Cost? Business Models? Operational Models? Products? Services? Markets? http://t.co/2qvr8spnbB",
57
+ [7] "Infographic: How communications service providers can thrive in the new digital environment? #digitaltransformation http://t.co/MXbya4026L",
58
+ [8] "Customer data is now one of the most valuable strategic assets. How wide is your customer view? http://t.co/w8JFOLJrC4 #TCSDigital",
59
+ [9] "Read how the success of a #retail business depends on its ability to achieve customer loyalty: http://t.co/ZtNfDsi1z6"
60
+ ],
61
+ "nycmarathon" => [
62
+ [0] "Congrats to this week's winners! http://t.co/tCnivlexjH Enter for chance to win non-complimentary, guaranteed entry http://t.co/C3IQHxjKdX.",
63
+ [1] "Training for a marathon or other race? @NYRRtraining is ready to answer your running questions! Ask away: https://t.co/KcqizraR0u #runchat",
64
+ [2] "Thoughts are with loved ones of Otto Mond, Marathon Man, who ran 40 marathons--18 consecutive @nycmarathon races http://t.co/t9ln1I0myy",
65
+ [3] "So many loving @nycmarathon moments! Share yours https://t.co/IqAPS0OeXl. #tcsnycmarathon",
66
+ [4] "The @nycmarathon course has been feeling the #polarvortex, too! http://t.co/zRYIIGNmvq",
67
+ [5] "Will you be our Valentine? @ New York Road Runners Office http://t.co/J5aWtwAymM",
68
+ [6] "\"Running is like life, what you put into it is what you get out of it.\" http://t.co/szLRBRgXNz",
69
+ [7] "It only takes one! #centralpark http://t.co/ESFJZ3MOog",
70
+ [8] "Apply to run @nycmarathon now &amp; you'll be automatically entered for weekly drawings for entry. http://t.co/WzbFn7ap2A http://t.co/Dt25B8CUGw",
71
+ [9] "Watch 2014 #TCSNYCMarathon in style near the finish line. Win 2 tickets to @NYCMarathon VIP Brunch http://t.co/oPR5sr8XkE #nyrrmillrose"
72
+ ],
73
+ "TCS_Oracle" => [
74
+ [0] "RT @TCS_News: See photos from our partnership w/ Finnish Wheelchair Curling team #Sochi2014 http://t.co/CfPfExPhF7 #ReleaseYourRock http://…",
75
+ [1] "When demand drops, inventory level surge. How do you relieve this pressure? Learn how #TCS SCM solutions help. http://t.co/4wHaHfLocY",
76
+ [2] "Learn what U.S. top #supply chain and logistics executives say about the complexities of #Warranty Management: http://t.co/XYuZoJaLV9 #SCM",
77
+ [3] "Oracle Exadata SERVER + STORAGE + DATABASE software = All around performance in #Big Data environments. http://t.co/QT5DPWB0qp",
78
+ [4] "RT @SandeepM_: “Many CEOs are telling us they’re reinventing their IT platforms to keep up with operational changes: http://t.co/j1pB1r42NW…",
79
+ [5] "90% of decision-makers indicate that delivering a good #custex is critical to their company's success. http://t.co/i11Adu4GzI",
80
+ [6] "RT @WilsonYChow: \"Own the customer experience.\" - Stephen Slade, Oracle #warranty #CX #CRM http://t.co/i9BrgDBtvo",
81
+ [7] "Data driven insights can more effectively predict customer needs. Share your #CX views. http://t.co/i11Adu4GzI",
82
+ [8] "Prepare for the #custex management of the future. Leveraging insight to drive actionable foresight - PoV by @kramanuj http://t.co/E6NkwlpdxU",
83
+ [9] "TCS survey shows only 37% of companies earn a #custex rating of 'excellent' or 'good\u0092. How do you compare? http://t.co/E6NkwlpdxU"
84
+ ],
85
+ "TCS_SAP" => [
86
+ [0] "#TCS Profitability Analysis Tool certified by #SAP- first partner to achieve certification in #HANA App in APAC http://t.co/IfqrAZ0jt0",
87
+ [1] "RT @TCS_News: See photos from our partnership w/ Finnish Wheelchair Curling team #Sochi2014 http://t.co/CfPfExPhF7 #ReleaseYourRock http://…",
88
+ [2] "Address your enterprise’s multi-country, multi-lingual requirements with #TCS Accelerated #SAP HCM Framework. http://t.co/Fc9XgX6PvD",
89
+ [3] "SPEED: #SAP HANA drives faster complex report generation with TCS Profitability analysis tool http://t.co/LDFMiUGefu",
90
+ [4] "#TCS\u0092 Accelerated #SAP #HCM framework minimizes development efforts &amp; improves data migration quality. http://t.co/oSMHeXUjoT",
91
+ [5] "Agile decision making requires #mobility that enables utilization of profitability reports on the go. http://t.co/LDFMiUGefu",
92
+ [6] "#TCS CoE runs one of the largest SAP HANA hardware platforms with a 5 TB in-memory capacity. http://t.co/egAxiZyXYm",
93
+ [7] "Data VELOCITY + VARIETY + VOLUME = most relevant insights. Learn more about #BigData and Analytics with @TCS_SAP http://t.co/2IticSlsEq",
94
+ [8] "Accelerated #SAP HCM framework from @TCS_news helps improve operational efficiency. Learn more: http://t.co/Fc9XgX6PvD",
95
+ [9] "SPEED: #TCS\u0092 Accelerated #SAP #HCM framework reduces implementation time &amp; ensures higher employee productivity. http://t.co/oSMHeXUjoT"
96
+ ],
97
+ "TCS_SFDC" => [
98
+ [0] "Transforming customer service: TCS educates and advises on strategy and approach, delivering a transformation that provides long-term ROI.",
99
+ [1] "Did you know? TCS' Lisa Hager is the only female executive currently leading a global Platinum http://t.co/VfHJvktqRe practice. #LeanIn",
100
+ [2] "We've got your #Salesforce project covered: TCS has almost 280,000 employees from 118 different counties working in 197 offices.",
101
+ [3] "Did you know? TCS has one of the largest pools of Salesforce certified consultants in the world http://t.co/OWk0txFJyH",
102
+ [4] "Enabling customer-driven enterprises: TCS delivers proven, end-to-end http://t.co/VfHJvktqRe advisory, implementation and support solutions",
103
+ [5] "Hit the ground running: We have customized apps past standard functionality to address unique challenges http://t.co/HuyiUiE8wM",
104
+ [6] "Did you know? TCS\u0092 SaaS CoE helps meet the needs Fortune 100 organizations http://t.co/WfDbZ4WTAF",
105
+ [7] "Business today demands solutions that establish a 360 degree view of customer. Do you? http://t.co/hpuSKnB0Ti",
106
+ [8] "Did you know? TCS integrates key technology trends with transformative core business offerings http://t.co/WsM3qqsoFI",
107
+ [9] "Did you know? TCS has a dedicated team focused on next-generation mobility for our customers. Learn more: http://t.co/PrECiDwSA6"
108
+ ],
109
+ "TCSITWiz" => [
110
+ [0] "BBC is experimenting with #socialmedia to launch a 15-seconds daily news burst video. What is it called? #TCSITWiz http://t.co/KFZgSvUnlA",
111
+ [1] "@i_am_mejor That's right!",
112
+ [2] "Do you follow @TCS_News (twitter) for the latest updates? What did TCS co-develop with Nissan? Answer using #TCSITWiz http://t.co/jbMFqhSY3Q",
113
+ [3] "Do you run every day? RT @TCS_News We run as a group. it’s a great bonding exercise. — N Chandrasekaran, CEO and MD http://t.co/0aAIlU4y34",
114
+ [4] "@astiksamal You can be if you win all the way through. Good luck Astik!",
115
+ [5] "@Balaji1997 That's the correct answer Balaji!",
116
+ [6] "@tkaran50 You can always cheer &amp; catch the live action here on twitter as well as on our FB page: https://t.co/N8xHp2qHVo. @mustaqeemahmed",
117
+ [7] "These look cool, right? But, they're not the smart watches we gave to #TCSITWiz Mega Final Champions! Identify these? http://t.co/ol2H7STkno",
118
+ [8] "@Praveen_ITWiz That's correct Praveen!",
119
+ [9] "@tkaran50 Yes, he @mustaqeemahmed is! #WizFive"
120
+ ],
121
+ "iONSMECloudERP" => [
122
+ [0] "Blog: Make Material Requirement Planning simple http://t.co/yIJflhRqyt #MRP #ERP #JIT",
123
+ [1] "Ensure hassle free audit by tracking versions &amp; change history for an approved Purchase Order using #iON #Cloud #ERP http://t.co/PlIdckaF5g",
124
+ [2] "Enable supervisors to initiate appraisal, set &amp; approve goals for employees of a work group in bulk &amp; save time http://t.co/hb6NvKverV",
125
+ [3] "Tag the travel requisition number against travel advance/claim application for easy tracking &amp; clearance http://t.co/Frb71ryGNd #Cloud #ERP",
126
+ [4] "View shift roster details using quick link of Self Service &amp; ensure correct payroll processing http://t.co/Opu9NA9Gys #Cloud #ERP",
127
+ [5] "Students can give suggestions through Self Service, rather than emails thus ensuring easy collation of feedback http://t.co/kgBPqUDBDd #ERP",
128
+ [6] "Glad to know :) RT \"@siddasrinivas: @iONSMECloudERP The problem solved. i downloaded hallticket.thanks to tcs ion\"",
129
+ [7] "@siddasrinivas Hi, please DM your contact number. We will soon have someone help you.",
130
+ [8] "Blog: Mobile #computing is slowly replacing traditional registers and desktops http://t.co/JHyizQMIB2",
131
+ [9] "Save time &amp; effort by updating student hostel allotment details in bulk using excel http://t.co/bnfAgqahM1 #TCS #iON #Cloud #ERP"
132
+ ],
133
+ "TCSWorld10K" => [
134
+ [0] "@M_Hansson Kindly check our Website http://t.co/mRFIlcSSSI) for details regarding registration details in March 2014",
135
+ [1] "@tirthpandya kindly wait for the official confirmation which will be out by last week of Feb / Mar 1st week.",
136
+ [2] "Wishing everyone a very Happy Dussehra from TCS World 10K Bangalore Team... http://t.co/80BXR5XuEn",
137
+ [3] "Happy Ganesh Chaturthi to everyone. How are you celebrating? :) http://t.co/zQTtCzyyJM",
138
+ [4] "Happy Janmashtami to all Runners! :) http://t.co/Kg6uTCUq3R",
139
+ [5] "Wishing you all a very Happy Raksha Bandhan from TCS World 10K Bangalore team! http://t.co/LKsNbL7DMw",
140
+ [6] "Wishing you all a very Happy Raksha Bandhan from TCS World 10K Bangalore team! http://t.co/pKNhwWsyKE",
141
+ [7] "Wish you all a Happy Independence Day! Jai Hind! http://t.co/11ZaNnMRo6",
142
+ [8] "Wishing you all, Eid Mubarak :) http://t.co/RKd3V8w5n2",
143
+ [9] "Poll : Which level of a runner you will classify yourself in?\n\n- Beginners Level\n\n- Intermediate Level\n\n- Professional Level"
144
+ ]
145
+ }
146
+
147
+ You can Still fetch the Tweets of independent Accounts too or Non TCS
148
+
149
+ 1.9.3p448 :004 > fetcher = THA::Fetcher.new({connection: client,user: 'ankit8898'})
150
+
151
+
152
+ {
153
+ "ankit8898" => [
154
+ [0] "#Opensourcing githubissues-port, a #rubygem to import/export #github issues #ruby https://t.co/1lhGLqppMW",
155
+ [1] "Achievement Unlocked: Philanthropist https://t.co/T5MVp1FiOg via @coderwall",
156
+ [2] "Useful blog #deploy #yeomanangular app on #heroku http://t.co/et4kVYqvyn",
157
+ [3] "RT @_zapper320: Look at our new gem https://t.co/UQ2yIC0GNp #rubygems #ruby #googlehangouts",
158
+ [4] "RT @babumoshoy: I think the biggest challenge ahead of Arvind Kejriwal is the summer when he might struggle to keep the muffler on.",
159
+ [5] "@raysrashmi @binary_function that was informative .. i was not knowing about ext2: -&gt; 32768 case!",
160
+ [6] "I just backed Hello Ruby on @Kickstarter http://t.co/rgcnKsd5b4",
161
+ [7] "Rails - filter using join model on has_many through #protip https://t.co/ADBUNewXkA via @coderwall",
162
+ [8] "@_svs_ thanks for the retweet! Have a great new year",
163
+ [9] "@jedisct1 Thank you !"
164
+ ]
165
+ }
166
+
167
+
168
+ ## Licensing
169
+
170
+
171
+ The gem itself is released under the MIT license
172
+
173
+ :pray:
@@ -0,0 +1,6 @@
1
+ module THA
2
+ class Base < Twitter::REST::Client
3
+
4
+
5
+ end
6
+ end
@@ -0,0 +1,22 @@
1
+ module THA
2
+ class Connection < Base
3
+
4
+ def initialize(opts = {})
5
+ super
6
+ end
7
+
8
+ def collect_with_max_id(collection=[], max_id=nil, &block)
9
+ response = yield max_id
10
+ collection += response
11
+ response.empty? ? collection.flatten : collect_with_max_id(collection, response.last.id - 1, &block)
12
+ end
13
+
14
+ def get_all_tweets(user)
15
+ collect_with_max_id do |max_id|
16
+ options = {:count => 200, :include_rts => true}
17
+ options[:max_id] = max_id unless max_id.nil?
18
+ user_timeline(user, options)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,17 @@
1
+ module THA
2
+ class Fetcher
3
+
4
+ def initialize(opts = {})
5
+ @connection = opts[:connection]
6
+ @users = opts[:user].nil? ? THA::Handles.list : [opts[:user]]
7
+ end
8
+
9
+ def get
10
+ hsh = Hash.new
11
+ @users.each do |user|
12
+ hsh[user] = @connection.get_all_tweets(user).collect {|tweet| tweet.text}
13
+ end
14
+ hsh
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,8 @@
1
+ module THA
2
+ class Handles
3
+
4
+ def self.list
5
+ ['TCS_News','nycmarathon','TCS_Oracle','TCS_SAP','TCS_SFDC', 'TCSITWiz', 'iONSMECloudERP','TCSWorld10K']
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ require 'twitter'
2
+ require 'awesome_print'
3
+ require 'tcs-handles-aggregator/base'
4
+ require 'tcs-handles-aggregator/handles'
5
+ require 'tcs-handles-aggregator/connection'
6
+ require 'tcs-handles-aggregator/fetcher'
@@ -0,0 +1,20 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'tcs-handles-aggregator'
5
+ s.version = '0.0.1'
6
+ s.date = '2014-02-21'
7
+ s.summary = "Tweets Aggregator of all TCS related handles on twitter. "
8
+ s.description = "Tweets Aggregator of all TCS related handles on twitter. "
9
+ s.authors = ["Ankit gupta","Ekta Verma"]
10
+ s.email = ['ankit.gupta8898@gmail.com','eku4evr@gmail.com']
11
+ s.files = `git ls-files`.split($/)
12
+ s.require_paths = ["lib"]
13
+ s.add_runtime_dependency 'twitter'
14
+ s.add_runtime_dependency 'awesome_print'
15
+ s.add_development_dependency 'rspec'
16
+ s.add_development_dependency 'rake'
17
+ s.license = 'MIT'
18
+ s.homepage =
19
+ 'https://github.com/gemathon-rockets/encrypter_decrypter_files'
20
+ end
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tcs-handles-aggregator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ankit gupta
8
+ - Ekta Verma
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-02-21 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: twitter
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ! '>='
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ! '>='
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: awesome_print
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ! '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rspec
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ! '>='
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: rake
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ description: ! 'Tweets Aggregator of all TCS related handles on twitter. '
71
+ email:
72
+ - ankit.gupta8898@gmail.com
73
+ - eku4evr@gmail.com
74
+ executables: []
75
+ extensions: []
76
+ extra_rdoc_files: []
77
+ files:
78
+ - Gemfile
79
+ - Gemfile.lock
80
+ - Readme.md
81
+ - lib/tcs-handles-aggregator.rb
82
+ - lib/tcs-handles-aggregator/base.rb
83
+ - lib/tcs-handles-aggregator/connection.rb
84
+ - lib/tcs-handles-aggregator/fetcher.rb
85
+ - lib/tcs-handles-aggregator/handles.rb
86
+ - tcs-handles-aggregator.gemspec
87
+ homepage: https://github.com/gemathon-rockets/encrypter_decrypter_files
88
+ licenses:
89
+ - MIT
90
+ metadata: {}
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ! '>='
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubyforge_project:
107
+ rubygems_version: 2.1.10
108
+ signing_key:
109
+ specification_version: 4
110
+ summary: Tweets Aggregator of all TCS related handles on twitter.
111
+ test_files: []