milo 0.0.1 → 0.0.2.alpha

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/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.2
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 victorhazbun87
1
+ Copyright (c) 2012 Victor Hazbun
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Milo
1
+ # Milo [![Build Status](https://secure.travis-ci.org/victorhazbun87/milo.png)](https://secure.travis-ci.org/victorhazbun87/milo)
2
2
 
3
3
  TODO: Write a gem description
4
4
 
data/Rakefile CHANGED
@@ -1,2 +1,7 @@
1
1
  #!/usr/bin/env rake
2
2
  require "bundler/gem_tasks"
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task :default => :spec
data/lib/milo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Milo
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2.alpha"
3
3
  end
data/milo.gemspec CHANGED
@@ -1,21 +1,21 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/milo/version', __FILE__)
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+ require "milo/version"
3
4
 
4
- Gem::Specification.new do |gem|
5
- gem.authors = ["victorhazbun87"]
6
- gem.email = ["victorhazbun87@gmail.com"]
7
- gem.description = %q{Track in real time the price and availability of every product carried by every location of every merchant.}
8
- gem.summary = %q{Ruby wrapper for the eBay Milo API}
9
- gem.homepage = ""
5
+ Gem::Specification.new do |s|
6
+ s.name = "milo"
7
+ s.version = Milo::VERSION
8
+ s.authors = ["victorhazbun87"]
9
+ s.email = ["victorhazbun87@gmail.com"]
10
+ s.description = %q{Track in real time the price and availability of every product carried by every location of every merchant through eBay Milo API.}
11
+ s.summary = %q{Ruby wrapper for the eBay Milo API}
12
+ s.homepage = "https://github.com/victorhazbun87/milo"
10
13
 
11
- gem.files = `git ls-files`.split($\)
12
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
- gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
- gem.name = "milo"
15
- gem.require_paths = ["lib"]
16
- gem.version = Milo::VERSION
14
+ s.files = `git ls-files`.split("\n")
15
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17
+ s.require_paths = ["lib"]
17
18
 
18
- gem.add_development_dependency "rake"
19
- gem.add_development_dependency "rspec"
20
- gem.add_development_dependency "supermodel"
19
+ s.add_development_dependency "rake"
20
+ s.add_development_dependency "rspec"
21
21
  end
@@ -0,0 +1,5 @@
1
+ # encoding: utf-8
2
+
3
+ describe Milo do
4
+ pending
5
+ end
@@ -0,0 +1,2 @@
1
+ require 'rubygems'
2
+ require 'milo'
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: milo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
5
- prerelease:
4
+ version: 0.0.2.alpha
5
+ prerelease: 6
6
6
  platform: ruby
7
7
  authors:
8
8
  - victorhazbun87
@@ -43,24 +43,8 @@ dependencies:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
45
  version: '0'
46
- - !ruby/object:Gem::Dependency
47
- name: supermodel
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
46
  description: Track in real time the price and availability of every product carried
63
- by every location of every merchant.
47
+ by every location of every merchant through eBay Milo API.
64
48
  email:
65
49
  - victorhazbun87@gmail.com
66
50
  executables: []
@@ -68,6 +52,8 @@ extensions: []
68
52
  extra_rdoc_files: []
69
53
  files:
70
54
  - .gitignore
55
+ - .rspec
56
+ - .travis.yml
71
57
  - CHANGELOG.md
72
58
  - Gemfile
73
59
  - LICENSE
@@ -77,7 +63,9 @@ files:
77
63
  - lib/milo.rb
78
64
  - lib/milo/version.rb
79
65
  - milo.gemspec
80
- homepage: ''
66
+ - spec/milo/milo_spec.rb
67
+ - spec/spec_helper.rb
68
+ homepage: https://github.com/victorhazbun87/milo
81
69
  licenses: []
82
70
  post_install_message:
83
71
  rdoc_options: []
@@ -91,20 +79,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
91
79
  version: '0'
92
80
  segments:
93
81
  - 0
94
- hash: -4295854407271645895
82
+ hash: -4079993027693890133
95
83
  required_rubygems_version: !ruby/object:Gem::Requirement
96
84
  none: false
97
85
  requirements:
98
- - - ! '>='
86
+ - - ! '>'
99
87
  - !ruby/object:Gem::Version
100
- version: '0'
101
- segments:
102
- - 0
103
- hash: -4295854407271645895
88
+ version: 1.3.1
104
89
  requirements: []
105
90
  rubyforge_project:
106
91
  rubygems_version: 1.8.24
107
92
  signing_key:
108
93
  specification_version: 3
109
94
  summary: Ruby wrapper for the eBay Milo API
110
- test_files: []
95
+ test_files:
96
+ - spec/milo/milo_spec.rb
97
+ - spec/spec_helper.rb