Skip to content

Commit 6fce2b4

Browse files
committed
initial import
0 parents  commit 6fce2b4

File tree

5 files changed

+33
-0
lines changed

5 files changed

+33
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.gem
2+
.bundle
3+
Gemfile.lock
4+
pkg/*
5+
.rvmrc

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "http://rubygems.org"
2+
3+
# Specify your gem's dependencies in bnet_scraper.gemspec
4+
gemspec

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require "bundler/gem_tasks"

bnet_scraper.gemspec

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "bnet_scraper/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "bnet_scraper"
7+
s.version = "0.0.1"
8+
s.authors = ["Andrew Nordman"]
9+
s.email = ["[email protected]"]
10+
s.homepage = ""
11+
s.summary = %q{Battle.net Profile Scraper}
12+
13+
s.files = `git ls-files`.split("\n")
14+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
16+
s.require_paths = ["lib"]
17+
18+
s.add_runtime_dependency 'mechanize'
19+
s.add_development_dependency 'rspec'
20+
end

lib/bnet_scraper.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module BnetScraper
2+
# Your code goes here...
3+
end

0 commit comments

Comments
 (0)