insta 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: 2de0e3c65be90703324796c45b3c7243e2062b87e8172fa52d272f0db434eac8
4
- data.tar.gz: dc6911831ddc19c61872d7d5cec20d380a312823259b45a9afc1180ae1f549a3
3
+ metadata.gz: d722510c29acca1ac6f1add81d96f7cf8d80c939fcfd6c7ab260d41a45a8f7ef
4
+ data.tar.gz: 2774d2403c14c5b38450dfc135da33fcbe7bed4f041565e225eb01727e7977c7
5
5
  SHA512:
6
- metadata.gz: a8a2b67f56e384d60f9fbbf511f6cc98cfc4ec75643c85ef929e0c9a9ebfc86ba5164f546483d10f849f4ede5a900c70116640e7fd48cf54b64888e2a59d068e
7
- data.tar.gz: 559cff009e1186bcde48d09bb0bc48b66fa2591709090c9a273c5595e8d7adb4a80f1a167db9f930d4245008a27eb58f05c6c3de77eb72b41da74195f940bb0c
6
+ metadata.gz: 0c1e181a4dda4e7fa317187e978685b9e24024cea0fc13e7858f68fe36f2dc1b3deaa1794ac19a33423830164b3f2ee3976001c42d0d6a7750c2f6ba5d653839
7
+ data.tar.gz: a54f50fec9d366f577dbf04c42618209548aaeb28a82cdb91dbda00f4e9e45761ba52980b10176936ba7993f2bdf97881fce14a0e9816746ff1b7a0d6e2779cc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- insta (0.1.0)
4
+ insta (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/lib/insta.rb CHANGED
@@ -1,10 +1,9 @@
1
- require "insta/version"
2
-
3
1
  module Insta
4
2
  # Your code goes here...
5
3
  end
6
4
 
7
- require 'Insta/API'
8
- require 'Insta/CONSTANTS'
9
- require 'Insta/Device'
10
- require 'Insta/User'
5
+ require 'insta/version'
6
+ require 'insta/api'
7
+ require 'insta/constants'
8
+ require 'insta/device'
9
+ require 'insta/user'
data/lib/insta/api.rb CHANGED
@@ -3,10 +3,10 @@ require 'Base64'
3
3
  require 'digest/md5'
4
4
  require 'net/http'
5
5
  require 'json'
6
- require 'Insta/User'
7
- require 'Insta/account'
8
- require 'Insta/feed'
9
- require 'Insta/Configuration'
6
+ require 'insta/user'
7
+ require 'insta/account'
8
+ require 'insta/feed'
9
+ require 'insta/configuration'
10
10
 
11
11
  module Insta
12
12
  module API
data/lib/insta/user.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require 'digest/md5'
2
- require 'Insta/Device'
3
- require 'Insta/CONSTANTS'
2
+ require 'insta/device'
3
+ require 'insta/constants'
4
4
 
5
5
  module Insta
6
6
  class User
data/lib/insta/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Insta
2
- VERSION = "0.1.0"
2
+ VERSION = '0.1.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: insta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Renan Garcia
@@ -78,7 +78,6 @@ files:
78
78
  - lib/insta/account.rb
79
79
  - lib/insta/api.rb
80
80
  - lib/insta/configuration.rb
81
- - lib/insta/conguration.rb
82
81
  - lib/insta/constants.rb
83
82
  - lib/insta/device.rb
84
83
  - lib/insta/feed.rb
@@ -1,5 +0,0 @@
1
- module Insta
2
- class Configuration
3
- attr_accessor :proxy_list
4
- end
5
- end