giddyup 0.0.1

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 ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec", "~> 2.8.0"
10
+ gem "rdoc", "~> 3.12"
11
+ gem "bundler"
12
+ gem "jeweler", "~> 1.8.4"
13
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,31 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ git (1.2.5)
6
+ jeweler (1.8.4)
7
+ bundler (~> 1.0)
8
+ git (>= 1.2.5)
9
+ rake
10
+ rdoc
11
+ json (1.7.4)
12
+ rake (0.9.2.2)
13
+ rdoc (3.12)
14
+ json (~> 1.4)
15
+ rspec (2.8.0)
16
+ rspec-core (~> 2.8.0)
17
+ rspec-expectations (~> 2.8.0)
18
+ rspec-mocks (~> 2.8.0)
19
+ rspec-core (2.8.0)
20
+ rspec-expectations (2.8.0)
21
+ diff-lcs (~> 1.1.2)
22
+ rspec-mocks (2.8.0)
23
+
24
+ PLATFORMS
25
+ ruby
26
+
27
+ DEPENDENCIES
28
+ bundler
29
+ jeweler (~> 1.8.4)
30
+ rdoc (~> 3.12)
31
+ rspec (~> 2.8.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 kellydunn
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,15 @@
1
+ ```
2
+ __ __
3
+ __ /\ \ /\ \
4
+ __ /\_\ \_\ \ \_\ \ __ __ __ __ _____
5
+ /'_ `\/\ \ /'_` \ /'_` \/\ \/\ \/\ \/\ \/\ '__`\
6
+ /\ \L\ \ \ \/\ \L\ \/\ \L\ \ \ \_\ \ \ \_\ \ \ \L\ \
7
+ \ \____ \ \_\ \___,_\ \___,_\/`____ \ \____/\ \ ,__/
8
+ \/___L\ \/_/\/__,_ /\/__,_ /`/___/> \/___/ \ \ \/
9
+ /\____/ /\___/ \ \_\
10
+ \_/__/ \/__/ \/_/
11
+
12
+ ```
13
+ # what
14
+
15
+ yehaw
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "giddyup"
18
+ gem.homepage = "http://github.com/kellydunn/giddyup"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{ yehaw }
21
+ gem.description = %Q{ yehaw }
22
+ gem.email = "defaultstring@gmail.com"
23
+ gem.authors = ["kellydunn"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "giddyup #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
data/bin/giddyup ADDED
@@ -0,0 +1,5 @@
1
+ #! /usr/bin/env ruby
2
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
3
+ require 'giddyup'
4
+ require 'giddyup/runner'
5
+ exit Giddyup::Runner.run!(*ARGV)
@@ -0,0 +1,27 @@
1
+ # -*- coding: utf-8 -*-
2
+ module Giddyup
3
+ class Runner
4
+ class << self
5
+ def run!(*args)
6
+ files = parse_options(args)
7
+ Giddyup::Util.post_files(files) if files
8
+ return 0
9
+ end
10
+
11
+ def parse_options(args)
12
+ value = args.shift
13
+ error "WHERES MY FILE щ(ಠ益ಠщ)" if value.nil? || !valid_file(value)
14
+ files = args.inject([value]) do |acc, arg|
15
+ acc << arg if valid_file(arg)
16
+ acc
17
+ end
18
+ files
19
+ end
20
+
21
+ def valid_file(path)
22
+ cwd = `pwd`.strip
23
+ File.exists?(File.join(cwd, path))
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,35 @@
1
+ # -*- coding: utf-8 -*-
2
+ require 'open-uri'
3
+ require 'net/http'
4
+ require 'json'
5
+
6
+ module Giddyup
7
+ class Util
8
+ def self.post_files(files)
9
+ manifest_files = files.inject({}) do |acc, file|
10
+ acc.merge!({File.basename(file) => {"content" => File.open(file).readlines.inject(""){ |acc, s| acc << s }}})
11
+ end
12
+
13
+ params = {
14
+ "description" => "This gist was ★automagically★ generated by giddyup™",
15
+ "public" => true,
16
+ "files" => manifest_files
17
+ }
18
+
19
+ uri = URI("https://api.github.com/gists")
20
+ req = Net::HTTP::Post.new(uri.to_s)
21
+
22
+ if File.exists?("~/.g-up/credentials")
23
+ auth = YAML::load("~/.g-up/credentials")
24
+ req.basic_auth(auth[:username], auth[:password])
25
+ end
26
+
27
+ req.body = params.to_json
28
+ req["content-type"] = "application/json"
29
+ Net::HTTP.start(uri.host, uri.port, :use_ssl => true) do |http|
30
+ # TODO print url of gist afterwards
31
+ http.request(req)
32
+ end
33
+ end
34
+ end
35
+ end
data/lib/giddyup.rb ADDED
@@ -0,0 +1,4 @@
1
+ module Giddyup
2
+ autoload :Runner, "giddyup/runner"
3
+ autoload :Util, "giddyup/util"
4
+ end
@@ -0,0 +1,5 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "Giddyup" do
4
+ it "should maybe have some tests sometime"
5
+ end
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'giddyup'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
data/test.txt ADDED
@@ -0,0 +1 @@
1
+ щ(ಠ益ಠщ)
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: giddyup
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - kellydunn
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-08-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: &77646070 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 2.8.0
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *77646070
25
+ - !ruby/object:Gem::Dependency
26
+ name: rdoc
27
+ requirement: &77645620 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '3.12'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *77645620
36
+ - !ruby/object:Gem::Dependency
37
+ name: bundler
38
+ requirement: &77645160 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *77645160
47
+ - !ruby/object:Gem::Dependency
48
+ name: jeweler
49
+ requirement: &77644780 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 1.8.4
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *77644780
58
+ description: ! ' yehaw '
59
+ email: defaultstring@gmail.com
60
+ executables:
61
+ - giddyup
62
+ extensions: []
63
+ extra_rdoc_files:
64
+ - LICENSE.txt
65
+ - README.md
66
+ files:
67
+ - .document
68
+ - .rspec
69
+ - Gemfile
70
+ - Gemfile.lock
71
+ - LICENSE.txt
72
+ - README.md
73
+ - Rakefile
74
+ - VERSION
75
+ - bin/giddyup
76
+ - lib/giddyup.rb
77
+ - lib/giddyup/runner.rb
78
+ - lib/giddyup/util.rb
79
+ - spec/giddyup_spec.rb
80
+ - spec/spec_helper.rb
81
+ - test.txt
82
+ homepage: http://github.com/kellydunn/giddyup
83
+ licenses:
84
+ - MIT
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ! '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ segments:
96
+ - 0
97
+ hash: 827631089
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 1.8.10
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: yehaw
110
+ test_files: []