get_user_tweets 0.0.3 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 882d1f468599910b3c7d74f6864ff363ef9e66c7
4
- data.tar.gz: f96597454fe40890512717b8a377ed059323e7e8
3
+ metadata.gz: 1277b47c2c219d41ea415b0edc6329881025ebff
4
+ data.tar.gz: 40d949bcd564f15fbf225df1cccba239cb551726
5
5
  SHA512:
6
- metadata.gz: 2c71719c096e5c6dbb77e28bcf8477c50355b9e1095809000910e7a79c7e66ecaae4c80f541f584ff0f18c0be47a330ee55a0ecfeb341fb3d92d701f37bdef16
7
- data.tar.gz: 442b1cc8cbee052014674eece23806913fce2e69aa17106cb40200eb9897b55772f165f8e6f662629ff1d3244112b7db8ee0d5fefe001b26ff05f2e2a0ae67b6
6
+ metadata.gz: bdc1f5f0eb3623f88d2a40e174a8b1af5e6521d5cd6dbfa045239af714910b97d713003ebd147a2d8c351898c82e36da4bc51b9c5078402206ff9b2a7ddcdbcf
7
+ data.tar.gz: 055f9396f330e6f02cdf52311f5a73b471af0ae0aff2da349121676cd38da3f919db06bada8d488c69b533c300986043e1d75e2bf020ccf2eed607d44b8101f3
data/README.md CHANGED
@@ -22,23 +22,7 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- Some following steps that you need to follow
26
-
27
- 1) You need four parameters
28
- a) consumer_key
29
- b) consumer_secret
30
- c) access_token
31
- d) access_token_secret
32
- e) Login to your twitter account
33
-
34
- Note* If you have not then follow this link
35
-
36
- https://apps.twitter.com/app/new
37
-
38
- 2)
39
-
40
- client = GetUserTweets::TwitterData.new('<consumer_key>', '<consumer_secret>', '<access_token>', '<access_token_secret>')
41
- client.get_tweets("your keyword")
25
+ TODO: Write usage instructions here
42
26
 
43
27
  ## Development
44
28
 
@@ -48,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
48
32
 
49
33
  ## Contributing
50
34
 
51
- Bug reports and pull requests are welcome on GitHub at https://github.com/ravendra-kumar/get_user_tweetstweets. 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.
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/tweets. 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.
52
36
 
53
37
 
54
38
  ## License
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{User can fetch tweets via twitter handle.}
13
13
  spec.description = %q{Return Tweets in JSON format}
14
- spec.homepage = 'https://github.com/ravendra-kumar/tweets'
14
+ spec.homepage = 'https://github.com/ruby/rake'
15
15
  spec.licenses = ['MIT', 'GPL-2.0']
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
@@ -30,5 +30,4 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency "bundler", "~> 1.12"
31
31
  spec.add_development_dependency "rake", "~> 10.0"
32
32
  spec.add_development_dependency "rspec", "~> 3.0"
33
- spec.add_development_dependency "oauth", "~> 0.5.1"
34
33
  end
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module GetUserTweets
2
- VERSION = "0.0.3"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: get_user_tweets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ravendra kumar
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-06-20 00:00:00.000000000 Z
11
+ date: 2016-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
- - !ruby/object:Gem::Dependency
56
- name: oauth
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: 0.5.1
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: 0.5.1
69
55
  description: Return Tweets in JSON format
70
56
  email:
71
57
  - ravendra.kumar@nectechnologies.in
@@ -85,8 +71,10 @@ files:
85
71
  - bin/setup
86
72
  - get_user_tweets.gemspec
87
73
  - lib/get_user_tweets.rb
74
+ - lib/get_user_tweets/get_tweets.rb
75
+ - lib/get_user_tweets/twitter.rb
88
76
  - lib/get_user_tweets/version.rb
89
- homepage: https://github.com/ravendra-kumar/tweets
77
+ homepage: https://github.com/ruby/rake
90
78
  licenses:
91
79
  - MIT
92
80
  - GPL-2.0