net 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b053efceeb0e641bd70ad573e3bf0e1878f641c
4
- data.tar.gz: b6b8520cb07b0dfba6773e5965b189c54a929051
3
+ metadata.gz: 94f5c2590964e1f1ab8a22cb873744d0e89aa89d
4
+ data.tar.gz: b466aa24c5a794d03d23e04a5ebb52c9940d7f4c
5
5
  SHA512:
6
- metadata.gz: 9323796a19a43560e2fca3b1264fdfc9f9383bbe726b797a15a84a0658d93b7d929a7aca8ff83f67091f5d9cc35a4f54e8bb0dcb9e80e6e922a1015290c296f2
7
- data.tar.gz: 4cc7adbcd3a26fadc51eba3dc3e98be18acb81b812911ec5b02fc7f4ccef8679cde6f8baaa7ef5ebfe3925613e48a608162a8faea8ef1f4a8c2b4ba267b6f9eb
6
+ metadata.gz: 62bf9f26740bba555471c6764fb169609ab1ede908bab4b91d9bd7d4a2a2b708177f0dc841942d38d322e2690926e5575027df4bd5707ca31aa25e3dfba222c2
7
+ data.tar.gz: cc36f803012a6d46d62153745e947a4158348abd0945c74c1be585e9d7d5c84ee0d70e0f654930122bff86d2b7c0aeee6994a3f85f1b62fed7cee199d51cfd96
@@ -22,3 +22,7 @@ If your code never calls the `followers_count` method on a `Twitter::User`, then
22
22
  If it does, then replace your calls to `followers_count` with `follower_count` (singular).
23
23
 
24
24
  * [ENHANCEMENT] Use the same `follower_count` name both for Twitter and Instagram users
25
+
26
+ ## 0.2.1 - 2014-10-20
27
+
28
+ * [ENHANCEMENT] Requiring 'net' auto-loads Net::Twitter and Net::Instagram
data/lib/net.rb CHANGED
@@ -1,4 +1,6 @@
1
1
  require "net/version"
2
+ require "net/twitter"
3
+ require "net/instagram"
2
4
 
3
5
  module Net
4
6
  end
@@ -1,3 +1,3 @@
1
1
  module Net
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -7,4 +7,5 @@ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
7
7
  ]
8
8
  SimpleCov.start
9
9
 
10
+ require 'net'
10
11
  Dir['./spec/support/**/*.rb'].each {|f| require f}
@@ -1,7 +1,5 @@
1
1
  require 'webmock/rspec'
2
2
  require 'vcr'
3
- require 'net/twitter'
4
- require 'net/instagram'
5
3
 
6
4
  VCR.configure do |c|
7
5
  c.configure_rspec_metadata!
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Cohen Hoffing