untappd-api 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/lib/untappd-api.rb CHANGED
@@ -1,8 +1,8 @@
1
- require 'untappd/error'
2
- require 'untappd/configuration'
3
- require 'untappd/api'
4
- require 'untappd/client'
5
- require 'untappd/version'
1
+ require 'untappd-api/error'
2
+ require 'untappd-api/configuration'
3
+ require 'untappd-api/api'
4
+ require 'untappd-api/client'
5
+ require 'untappd-api/version'
6
6
 
7
7
  # Adapted from Ruby Twitter gem by John Nunemaker
8
8
  # @see https://github.com/jnunemaker/twitter
File without changes
@@ -1,11 +1,11 @@
1
1
  module Untappd
2
2
 
3
3
  class Client < API
4
- require 'untappd/client/beer'
5
- require 'untappd/client/brewery'
6
- require 'untappd/client/checkin'
7
- require 'untappd/client/user'
8
- require 'untappd/client/venue'
4
+ require 'untappd-api/client/beer'
5
+ require 'untappd-api/client/brewery'
6
+ require 'untappd-api/client/checkin'
7
+ require 'untappd-api/client/user'
8
+ require 'untappd-api/client/venue'
9
9
 
10
10
  include Untappd::Client::Beer
11
11
  include Untappd::Client::Brewery
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ module Untappd
2
+ VERSION = "0.1.2"
3
+ end
data/untappd-api.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
- require "untappd/version"
3
+ require "untappd-api/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "untappd-api"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: untappd-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -68,16 +68,16 @@ files:
68
68
  - README.rdoc
69
69
  - Rakefile
70
70
  - lib/untappd-api.rb
71
- - lib/untappd/api.rb
72
- - lib/untappd/client.rb
73
- - lib/untappd/client/beer.rb
74
- - lib/untappd/client/brewery.rb
75
- - lib/untappd/client/checkin.rb
76
- - lib/untappd/client/user.rb
77
- - lib/untappd/client/venue.rb
78
- - lib/untappd/configuration.rb
79
- - lib/untappd/error.rb
80
- - lib/untappd/version.rb
71
+ - lib/untappd-api/api.rb
72
+ - lib/untappd-api/client.rb
73
+ - lib/untappd-api/client/beer.rb
74
+ - lib/untappd-api/client/brewery.rb
75
+ - lib/untappd-api/client/checkin.rb
76
+ - lib/untappd-api/client/user.rb
77
+ - lib/untappd-api/client/venue.rb
78
+ - lib/untappd-api/configuration.rb
79
+ - lib/untappd-api/error.rb
80
+ - lib/untappd-api/version.rb
81
81
  - spec/fixtures/add_comment.json
82
82
  - spec/fixtures/badges.json
83
83
  - spec/fixtures/beer.json
@@ -1,3 +0,0 @@
1
- module Untappd
2
- VERSION = "0.1.1"
3
- end