noitehoje 0.0.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.
- data/.document +5 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +50 -0
- data/LICENSE.txt +20 -0
- data/README.md +21 -0
- data/Rakefile +30 -0
- data/VERSION +1 -0
- data/lib/noitehoje.rb +8 -0
- data/lib/noitehoje/resource.rb +26 -0
- data/lib/noitehoje/resources/event.rb +6 -0
- data/lib/noitehoje/resources/venue.rb +6 -0
- data/noitehoje.gemspec +74 -0
- data/spec/spec_helper.rb +9 -0
- metadata +188 -0
    
        data/.document
    ADDED
    
    
    
        data/Gemfile
    ADDED
    
    
    
        data/Gemfile.lock
    ADDED
    
    | @@ -0,0 +1,50 @@ | |
| 1 | 
            +
            GEM
         | 
| 2 | 
            +
              remote: http://rubygems.org/
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                activemodel (3.2.7)
         | 
| 5 | 
            +
                  activesupport (= 3.2.7)
         | 
| 6 | 
            +
                  builder (~> 3.0.0)
         | 
| 7 | 
            +
                activeresource (3.2.7)
         | 
| 8 | 
            +
                  activemodel (= 3.2.7)
         | 
| 9 | 
            +
                  activesupport (= 3.2.7)
         | 
| 10 | 
            +
                activesupport (3.2.7)
         | 
| 11 | 
            +
                  i18n (~> 0.6)
         | 
| 12 | 
            +
                  multi_json (~> 1.0)
         | 
| 13 | 
            +
                builder (3.0.0)
         | 
| 14 | 
            +
                diff-lcs (1.1.3)
         | 
| 15 | 
            +
                fakeweb (1.3.0)
         | 
| 16 | 
            +
                git (1.2.5)
         | 
| 17 | 
            +
                i18n (0.6.0)
         | 
| 18 | 
            +
                jeweler (1.8.4)
         | 
| 19 | 
            +
                  bundler (~> 1.0)
         | 
| 20 | 
            +
                  git (>= 1.2.5)
         | 
| 21 | 
            +
                  rake
         | 
| 22 | 
            +
                  rdoc
         | 
| 23 | 
            +
                json (1.7.4)
         | 
| 24 | 
            +
                multi_json (1.3.6)
         | 
| 25 | 
            +
                rake (0.9.2.2)
         | 
| 26 | 
            +
                rdoc (3.12)
         | 
| 27 | 
            +
                  json (~> 1.4)
         | 
| 28 | 
            +
                rspec (2.11.0)
         | 
| 29 | 
            +
                  rspec-core (~> 2.11.0)
         | 
| 30 | 
            +
                  rspec-expectations (~> 2.11.0)
         | 
| 31 | 
            +
                  rspec-mocks (~> 2.11.0)
         | 
| 32 | 
            +
                rspec-core (2.11.1)
         | 
| 33 | 
            +
                rspec-expectations (2.11.2)
         | 
| 34 | 
            +
                  diff-lcs (~> 1.1.3)
         | 
| 35 | 
            +
                rspec-mocks (2.11.1)
         | 
| 36 | 
            +
                vcr (2.2.4)
         | 
| 37 | 
            +
                yard (0.8.2.1)
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            PLATFORMS
         | 
| 40 | 
            +
              ruby
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            DEPENDENCIES
         | 
| 43 | 
            +
              activeresource
         | 
| 44 | 
            +
              bundler
         | 
| 45 | 
            +
              fakeweb
         | 
| 46 | 
            +
              jeweler
         | 
| 47 | 
            +
              rake
         | 
| 48 | 
            +
              rspec
         | 
| 49 | 
            +
              vcr
         | 
| 50 | 
            +
              yard
         | 
    
        data/LICENSE.txt
    ADDED
    
    | @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            Copyright (c) 2012 Felipe Lima
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Permission is hereby granted, free of charge, to any person obtaining
         | 
| 4 | 
            +
            a copy of this software and associated documentation files (the
         | 
| 5 | 
            +
            "Software"), to deal in the Software without restriction, including
         | 
| 6 | 
            +
            without limitation the rights to use, copy, modify, merge, publish,
         | 
| 7 | 
            +
            distribute, sublicense, and/or sell copies of the Software, and to
         | 
| 8 | 
            +
            permit persons to whom the Software is furnished to do so, subject to
         | 
| 9 | 
            +
            the following conditions:
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            The above copyright notice and this permission notice shall be
         | 
| 12 | 
            +
            included in all copies or substantial portions of the Software.
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         | 
| 15 | 
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
         | 
| 16 | 
            +
            MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         | 
| 17 | 
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
         | 
| 18 | 
            +
            LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
         | 
| 19 | 
            +
            OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
         | 
| 20 | 
            +
            WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         | 
    
        data/README.md
    ADDED
    
    | @@ -0,0 +1,21 @@ | |
| 1 | 
            +
            # noitehoje (**draft**)
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Ruby Gem for noitehoje.com.br API Client
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            ## Contributing to noitehoje
         | 
| 6 | 
            +
             
         | 
| 7 | 
            +
             * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
         | 
| 8 | 
            +
             * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
         | 
| 9 | 
            +
             * Fork the project
         | 
| 10 | 
            +
             * Start a feature/bugfix branch
         | 
| 11 | 
            +
             * Commit and push until you are happy with your contribution
         | 
| 12 | 
            +
             * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
         | 
| 13 | 
            +
             * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            ## Contributors
         | 
| 16 | 
            +
             | 
| 17 | 
            +
             * Felipe Lima ([@felipecsl](https://github.com/felipecsl))
         | 
| 18 | 
            +
             
         | 
| 19 | 
            +
            ## Copyright
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            Copyright (c) 2012 Felipe Lima. See LICENSE.txt for further details.
         | 
    
        data/Rakefile
    ADDED
    
    | @@ -0,0 +1,30 @@ | |
| 1 | 
            +
            # encoding: utf-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require 'rubygems'
         | 
| 4 | 
            +
            require 'bundler'
         | 
| 5 | 
            +
            require 'rake'
         | 
| 6 | 
            +
            require 'jeweler'
         | 
| 7 | 
            +
            require 'rspec/core/rake_task'
         | 
| 8 | 
            +
            require 'yard'
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            Jeweler::Tasks.new do |gem|
         | 
| 11 | 
            +
              # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
         | 
| 12 | 
            +
              gem.name = "noitehoje"
         | 
| 13 | 
            +
              gem.homepage = "http://github.com/felipecsl/noitehoje"
         | 
| 14 | 
            +
              gem.license = "MIT"
         | 
| 15 | 
            +
              gem.summary = %Q{noitehoje.com.br API Client}
         | 
| 16 | 
            +
              gem.description = %Q{Ruby implementation for a noitehoje.com.br API Client}
         | 
| 17 | 
            +
              gem.email = "felipe.lima@gmail.com"
         | 
| 18 | 
            +
              gem.authors = ["Felipe Lima"]
         | 
| 19 | 
            +
              gem.required_ruby_version = ">= 1.9"
         | 
| 20 | 
            +
              # dependencies defined in Gemfile
         | 
| 21 | 
            +
            end
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            Jeweler::RubygemsDotOrgTasks.new
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            RSpec::Core::RakeTask.new(:spec)
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            task :test => :spec
         | 
| 28 | 
            +
            task :default => :spec
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            YARD::Rake::YardocTask.new
         | 
    
        data/VERSION
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            0.0.0
         | 
    
        data/lib/noitehoje.rb
    ADDED
    
    
| @@ -0,0 +1,26 @@ | |
| 1 | 
            +
            #coding: utf-8
         | 
| 2 | 
            +
            require 'activeresource'
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            module NoiteHoje
         | 
| 5 | 
            +
              class Resource < ActiveResource::Base
         | 
| 6 | 
            +
                self.site = "http://noitehoje.com.br"
         | 
| 7 | 
            +
                self.format = :json
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                class << self
         | 
| 10 | 
            +
                  @@auth_token = ENV['NOITEHOJE_AUTH_TOKEN']
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                  def find(*arguments)
         | 
| 13 | 
            +
                    arguments = append_auth_token_to_params(*arguments)
         | 
| 14 | 
            +
                    super(*arguments)
         | 
| 15 | 
            +
                  end
         | 
| 16 | 
            +
                  
         | 
| 17 | 
            +
                  def append_auth_token_to_params(*arguments)
         | 
| 18 | 
            +
                    opts = arguments.last.is_a?(Hash) ? arguments.pop : {}
         | 
| 19 | 
            +
                    opts = opts.has_key?(:params) ? opts : opts.merge(:params => {}) 
         | 
| 20 | 
            +
                    opts[:params] = opts[:params].merge(:auth_token => @@auth_token)
         | 
| 21 | 
            +
                    arguments << opts
         | 
| 22 | 
            +
                    arguments
         | 
| 23 | 
            +
                  end
         | 
| 24 | 
            +
                end
         | 
| 25 | 
            +
              end
         | 
| 26 | 
            +
            end
         | 
    
        data/noitehoje.gemspec
    ADDED
    
    | @@ -0,0 +1,74 @@ | |
| 1 | 
            +
            # Generated by jeweler
         | 
| 2 | 
            +
            # DO NOT EDIT THIS FILE DIRECTLY
         | 
| 3 | 
            +
            # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
         | 
| 4 | 
            +
            # -*- encoding: utf-8 -*-
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            Gem::Specification.new do |s|
         | 
| 7 | 
            +
              s.name = "noitehoje"
         | 
| 8 | 
            +
              s.version = "0.0.0"
         | 
| 9 | 
            +
             | 
| 10 | 
            +
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         | 
| 11 | 
            +
              s.authors = ["Felipe Lima"]
         | 
| 12 | 
            +
              s.date = "2012-08-04"
         | 
| 13 | 
            +
              s.description = "Ruby implementation for a noitehoje.com.br API Client"
         | 
| 14 | 
            +
              s.email = "felipe.lima@gmail.com"
         | 
| 15 | 
            +
              s.extra_rdoc_files = [
         | 
| 16 | 
            +
                "LICENSE.txt",
         | 
| 17 | 
            +
                "README.md"
         | 
| 18 | 
            +
              ]
         | 
| 19 | 
            +
              s.files = [
         | 
| 20 | 
            +
                ".document",
         | 
| 21 | 
            +
                "Gemfile",
         | 
| 22 | 
            +
                "Gemfile.lock",
         | 
| 23 | 
            +
                "LICENSE.txt",
         | 
| 24 | 
            +
                "README.md",
         | 
| 25 | 
            +
                "Rakefile",
         | 
| 26 | 
            +
                "VERSION",
         | 
| 27 | 
            +
                "lib/noitehoje.rb",
         | 
| 28 | 
            +
                "lib/noitehoje/resource.rb",
         | 
| 29 | 
            +
                "lib/noitehoje/resources/event.rb",
         | 
| 30 | 
            +
                "lib/noitehoje/resources/venue.rb",
         | 
| 31 | 
            +
                "noitehoje.gemspec",
         | 
| 32 | 
            +
                "spec/spec_helper.rb"
         | 
| 33 | 
            +
              ]
         | 
| 34 | 
            +
              s.homepage = "http://github.com/felipecsl/noitehoje"
         | 
| 35 | 
            +
              s.licenses = ["MIT"]
         | 
| 36 | 
            +
              s.require_paths = ["lib"]
         | 
| 37 | 
            +
              s.required_ruby_version = Gem::Requirement.new(">= 1.9")
         | 
| 38 | 
            +
              s.rubygems_version = "1.8.24"
         | 
| 39 | 
            +
              s.summary = "noitehoje.com.br API Client"
         | 
| 40 | 
            +
             | 
| 41 | 
            +
              if s.respond_to? :specification_version then
         | 
| 42 | 
            +
                s.specification_version = 3
         | 
| 43 | 
            +
             | 
| 44 | 
            +
                if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
         | 
| 45 | 
            +
                  s.add_runtime_dependency(%q<activeresource>, [">= 0"])
         | 
| 46 | 
            +
                  s.add_development_dependency(%q<bundler>, [">= 0"])
         | 
| 47 | 
            +
                  s.add_development_dependency(%q<rake>, [">= 0"])
         | 
| 48 | 
            +
                  s.add_development_dependency(%q<yard>, [">= 0"])
         | 
| 49 | 
            +
                  s.add_development_dependency(%q<jeweler>, [">= 0"])
         | 
| 50 | 
            +
                  s.add_development_dependency(%q<rspec>, [">= 0"])
         | 
| 51 | 
            +
                  s.add_development_dependency(%q<vcr>, [">= 0"])
         | 
| 52 | 
            +
                  s.add_development_dependency(%q<fakeweb>, [">= 0"])
         | 
| 53 | 
            +
                else
         | 
| 54 | 
            +
                  s.add_dependency(%q<activeresource>, [">= 0"])
         | 
| 55 | 
            +
                  s.add_dependency(%q<bundler>, [">= 0"])
         | 
| 56 | 
            +
                  s.add_dependency(%q<rake>, [">= 0"])
         | 
| 57 | 
            +
                  s.add_dependency(%q<yard>, [">= 0"])
         | 
| 58 | 
            +
                  s.add_dependency(%q<jeweler>, [">= 0"])
         | 
| 59 | 
            +
                  s.add_dependency(%q<rspec>, [">= 0"])
         | 
| 60 | 
            +
                  s.add_dependency(%q<vcr>, [">= 0"])
         | 
| 61 | 
            +
                  s.add_dependency(%q<fakeweb>, [">= 0"])
         | 
| 62 | 
            +
                end
         | 
| 63 | 
            +
              else
         | 
| 64 | 
            +
                s.add_dependency(%q<activeresource>, [">= 0"])
         | 
| 65 | 
            +
                s.add_dependency(%q<bundler>, [">= 0"])
         | 
| 66 | 
            +
                s.add_dependency(%q<rake>, [">= 0"])
         | 
| 67 | 
            +
                s.add_dependency(%q<yard>, [">= 0"])
         | 
| 68 | 
            +
                s.add_dependency(%q<jeweler>, [">= 0"])
         | 
| 69 | 
            +
                s.add_dependency(%q<rspec>, [">= 0"])
         | 
| 70 | 
            +
                s.add_dependency(%q<vcr>, [">= 0"])
         | 
| 71 | 
            +
                s.add_dependency(%q<fakeweb>, [">= 0"])
         | 
| 72 | 
            +
              end
         | 
| 73 | 
            +
            end
         | 
| 74 | 
            +
             | 
    
        data/spec/spec_helper.rb
    ADDED
    
    
    
        metadata
    ADDED
    
    | @@ -0,0 +1,188 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: noitehoje
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.0.0
         | 
| 5 | 
            +
              prerelease: 
         | 
| 6 | 
            +
            platform: ruby
         | 
| 7 | 
            +
            authors:
         | 
| 8 | 
            +
            - Felipe Lima
         | 
| 9 | 
            +
            autorequire: 
         | 
| 10 | 
            +
            bindir: bin
         | 
| 11 | 
            +
            cert_chain: []
         | 
| 12 | 
            +
            date: 2012-08-04 00:00:00.000000000 Z
         | 
| 13 | 
            +
            dependencies:
         | 
| 14 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 15 | 
            +
              name: activeresource
         | 
| 16 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 17 | 
            +
                none: false
         | 
| 18 | 
            +
                requirements:
         | 
| 19 | 
            +
                - - ! '>='
         | 
| 20 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 21 | 
            +
                    version: '0'
         | 
| 22 | 
            +
              type: :runtime
         | 
| 23 | 
            +
              prerelease: false
         | 
| 24 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 25 | 
            +
                none: false
         | 
| 26 | 
            +
                requirements:
         | 
| 27 | 
            +
                - - ! '>='
         | 
| 28 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 29 | 
            +
                    version: '0'
         | 
| 30 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 31 | 
            +
              name: bundler
         | 
| 32 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 33 | 
            +
                none: false
         | 
| 34 | 
            +
                requirements:
         | 
| 35 | 
            +
                - - ! '>='
         | 
| 36 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 37 | 
            +
                    version: '0'
         | 
| 38 | 
            +
              type: :development
         | 
| 39 | 
            +
              prerelease: false
         | 
| 40 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 41 | 
            +
                none: false
         | 
| 42 | 
            +
                requirements:
         | 
| 43 | 
            +
                - - ! '>='
         | 
| 44 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 45 | 
            +
                    version: '0'
         | 
| 46 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 47 | 
            +
              name: rake
         | 
| 48 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 49 | 
            +
                none: false
         | 
| 50 | 
            +
                requirements:
         | 
| 51 | 
            +
                - - ! '>='
         | 
| 52 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 53 | 
            +
                    version: '0'
         | 
| 54 | 
            +
              type: :development
         | 
| 55 | 
            +
              prerelease: false
         | 
| 56 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 57 | 
            +
                none: false
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - ! '>='
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '0'
         | 
| 62 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 63 | 
            +
              name: yard
         | 
| 64 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                none: false
         | 
| 66 | 
            +
                requirements:
         | 
| 67 | 
            +
                - - ! '>='
         | 
| 68 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 69 | 
            +
                    version: '0'
         | 
| 70 | 
            +
              type: :development
         | 
| 71 | 
            +
              prerelease: false
         | 
| 72 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 73 | 
            +
                none: false
         | 
| 74 | 
            +
                requirements:
         | 
| 75 | 
            +
                - - ! '>='
         | 
| 76 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 77 | 
            +
                    version: '0'
         | 
| 78 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 79 | 
            +
              name: jeweler
         | 
| 80 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 81 | 
            +
                none: false
         | 
| 82 | 
            +
                requirements:
         | 
| 83 | 
            +
                - - ! '>='
         | 
| 84 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 85 | 
            +
                    version: '0'
         | 
| 86 | 
            +
              type: :development
         | 
| 87 | 
            +
              prerelease: false
         | 
| 88 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 89 | 
            +
                none: false
         | 
| 90 | 
            +
                requirements:
         | 
| 91 | 
            +
                - - ! '>='
         | 
| 92 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 93 | 
            +
                    version: '0'
         | 
| 94 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 95 | 
            +
              name: rspec
         | 
| 96 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 97 | 
            +
                none: false
         | 
| 98 | 
            +
                requirements:
         | 
| 99 | 
            +
                - - ! '>='
         | 
| 100 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 101 | 
            +
                    version: '0'
         | 
| 102 | 
            +
              type: :development
         | 
| 103 | 
            +
              prerelease: false
         | 
| 104 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 105 | 
            +
                none: false
         | 
| 106 | 
            +
                requirements:
         | 
| 107 | 
            +
                - - ! '>='
         | 
| 108 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 109 | 
            +
                    version: '0'
         | 
| 110 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 111 | 
            +
              name: vcr
         | 
| 112 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 113 | 
            +
                none: false
         | 
| 114 | 
            +
                requirements:
         | 
| 115 | 
            +
                - - ! '>='
         | 
| 116 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 117 | 
            +
                    version: '0'
         | 
| 118 | 
            +
              type: :development
         | 
| 119 | 
            +
              prerelease: false
         | 
| 120 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 121 | 
            +
                none: false
         | 
| 122 | 
            +
                requirements:
         | 
| 123 | 
            +
                - - ! '>='
         | 
| 124 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 125 | 
            +
                    version: '0'
         | 
| 126 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 127 | 
            +
              name: fakeweb
         | 
| 128 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 129 | 
            +
                none: false
         | 
| 130 | 
            +
                requirements:
         | 
| 131 | 
            +
                - - ! '>='
         | 
| 132 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 133 | 
            +
                    version: '0'
         | 
| 134 | 
            +
              type: :development
         | 
| 135 | 
            +
              prerelease: false
         | 
| 136 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 137 | 
            +
                none: false
         | 
| 138 | 
            +
                requirements:
         | 
| 139 | 
            +
                - - ! '>='
         | 
| 140 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 141 | 
            +
                    version: '0'
         | 
| 142 | 
            +
            description: Ruby implementation for a noitehoje.com.br API Client
         | 
| 143 | 
            +
            email: felipe.lima@gmail.com
         | 
| 144 | 
            +
            executables: []
         | 
| 145 | 
            +
            extensions: []
         | 
| 146 | 
            +
            extra_rdoc_files:
         | 
| 147 | 
            +
            - LICENSE.txt
         | 
| 148 | 
            +
            - README.md
         | 
| 149 | 
            +
            files:
         | 
| 150 | 
            +
            - .document
         | 
| 151 | 
            +
            - Gemfile
         | 
| 152 | 
            +
            - Gemfile.lock
         | 
| 153 | 
            +
            - LICENSE.txt
         | 
| 154 | 
            +
            - README.md
         | 
| 155 | 
            +
            - Rakefile
         | 
| 156 | 
            +
            - VERSION
         | 
| 157 | 
            +
            - lib/noitehoje.rb
         | 
| 158 | 
            +
            - lib/noitehoje/resource.rb
         | 
| 159 | 
            +
            - lib/noitehoje/resources/event.rb
         | 
| 160 | 
            +
            - lib/noitehoje/resources/venue.rb
         | 
| 161 | 
            +
            - noitehoje.gemspec
         | 
| 162 | 
            +
            - spec/spec_helper.rb
         | 
| 163 | 
            +
            homepage: http://github.com/felipecsl/noitehoje
         | 
| 164 | 
            +
            licenses:
         | 
| 165 | 
            +
            - MIT
         | 
| 166 | 
            +
            post_install_message: 
         | 
| 167 | 
            +
            rdoc_options: []
         | 
| 168 | 
            +
            require_paths:
         | 
| 169 | 
            +
            - lib
         | 
| 170 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 171 | 
            +
              none: false
         | 
| 172 | 
            +
              requirements:
         | 
| 173 | 
            +
              - - ! '>='
         | 
| 174 | 
            +
                - !ruby/object:Gem::Version
         | 
| 175 | 
            +
                  version: '1.9'
         | 
| 176 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 177 | 
            +
              none: false
         | 
| 178 | 
            +
              requirements:
         | 
| 179 | 
            +
              - - ! '>='
         | 
| 180 | 
            +
                - !ruby/object:Gem::Version
         | 
| 181 | 
            +
                  version: '0'
         | 
| 182 | 
            +
            requirements: []
         | 
| 183 | 
            +
            rubyforge_project: 
         | 
| 184 | 
            +
            rubygems_version: 1.8.24
         | 
| 185 | 
            +
            signing_key: 
         | 
| 186 | 
            +
            specification_version: 3
         | 
| 187 | 
            +
            summary: noitehoje.com.br API Client
         | 
| 188 | 
            +
            test_files: []
         |