hustle_and_flow 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2ad538991817d27a8eecc569f8623079cd8da45d
4
+ data.tar.gz: 855fbfd13d91261bc5353074360f2ca6709735cf
5
+ SHA512:
6
+ metadata.gz: 9f0359c6e32ea999dd46ae83847e708fb93514cd34fd1bd885e16365f33e8ee9d810723ad2408146048bd5eaff245932a9446134bf81b6ca1140d06134c4ee7f
7
+ data.tar.gz: 74e82c9b0f1064bc6831e4d019f474e07bc7cbc4d4ad0ba32a44bba57aa595f264f03ed20bc39b030b5f5a17e4b3b16532d1d57b6ef7957be515ab735315da2c
data/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ InstalledFiles
7
+ _yardoc
8
+ coverage
9
+ doc/
10
+ lib/bundler/man
11
+ pkg
12
+ rdoc
13
+ spec/reports
14
+ tmp
15
+ *.bundle
16
+ *.so
17
+ *.o
18
+ *.a
19
+ mkmf.log
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.1.1
data/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.2
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - 2.1.0
7
+ - jruby-18mode # JRuby in 1.8 mode
8
+ - jruby-19mode # JRuby in 1.9 mode
9
+ script: bundle exec rspec spec
10
+ notifications:
11
+ slack:
12
+ rooms:
13
+ - thekompanee:p46x27zMG89XW66DgGuutoaW#open-source
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in hustle_and_flow.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hustle_and_flow (0.0.1)
5
+ octokit (~> 3.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.3.6)
11
+ codeclimate-test-reporter (0.3.0)
12
+ simplecov (>= 0.7.1, < 1.0.0)
13
+ diff-lcs (1.2.5)
14
+ docile (1.1.3)
15
+ faraday (0.9.0)
16
+ multipart-post (>= 1.2, < 3)
17
+ fuubar (2.0.0.beta1)
18
+ rspec (~> 3.0.beta)
19
+ ruby-progressbar (~> 1.3)
20
+ multi_json (1.10.0)
21
+ multipart-post (2.0.0)
22
+ octokit (3.1.0)
23
+ sawyer (~> 0.5.3)
24
+ rspec (3.0.0.beta2)
25
+ rspec-core (= 3.0.0.beta2)
26
+ rspec-expectations (= 3.0.0.beta2)
27
+ rspec-mocks (= 3.0.0.beta2)
28
+ rspec-core (3.0.0.beta2)
29
+ rspec-support (= 3.0.0.beta2)
30
+ rspec-expectations (3.0.0.beta2)
31
+ diff-lcs (>= 1.2.0, < 2.0)
32
+ rspec-support (= 3.0.0.beta2)
33
+ rspec-mocks (3.0.0.beta2)
34
+ rspec-support (= 3.0.0.beta2)
35
+ rspec-support (3.0.0.beta2)
36
+ rspectacular (0.33.0)
37
+ fuubar (~> 2.0.beta)
38
+ rspec (~> 3.0.beta)
39
+ ruby-progressbar (1.4.2)
40
+ sawyer (0.5.4)
41
+ addressable (~> 2.3.5)
42
+ faraday (~> 0.8, < 0.10)
43
+ simplecov (0.8.2)
44
+ docile (~> 1.1.0)
45
+ multi_json
46
+ simplecov-html (~> 0.8.0)
47
+ simplecov-html (0.8.0)
48
+
49
+ PLATFORMS
50
+ ruby
51
+
52
+ DEPENDENCIES
53
+ codeclimate-test-reporter (~> 0.3.0)
54
+ hustle_and_flow!
55
+ rspec (~> 3.0.0beta)
56
+ rspectacular (~> 0.33.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Jeff Felchner
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # HustleAndFlow
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'hustle_and_flow'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install hustle_and_flow
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/hustle_and_flow/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,37 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'hustle_and_flow/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'hustle_and_flow'
8
+
9
+ s.version = HustleAndFlow::VERSION
10
+
11
+ # Authors
12
+ s.authors = ['thekompanee', 'jfelchner']
13
+ s.email = ['support@thekompanee.com']
14
+ s.homepage = 'https://github.com/thekompanee/hustle_and_flow'
15
+
16
+ # About
17
+ s.license = 'MIT'
18
+ s.summary = 'Development Workflow Commands'
19
+ s.description = ''
20
+
21
+ # RDoc
22
+ s.rdoc_options = ['--charset', 'UTF-8']
23
+ s.extra_rdoc_files = %w[README.md LICENSE.txt]
24
+
25
+ # Manifest
26
+ s.files = `git ls-files -z`.split("\x0")
27
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
28
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
29
+ s.require_paths = ['lib']
30
+
31
+ s.add_dependency 'octokit', '~> 3.1'
32
+ s.add_dependency 'thor', '~> 0.19'
33
+
34
+ s.add_development_dependency 'rspec', '~> 3.0.0beta'
35
+ s.add_development_dependency 'rspectacular', '~> 0.33.0'
36
+ s.add_development_dependency 'codeclimate-test-reporter', '~> 0.3.0'
37
+ end
@@ -0,0 +1,3 @@
1
+ module HustleAndFlow
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,5 @@
1
+ require "hustle_and_flow/version"
2
+
3
+ module HustleAndFlow
4
+ # Your code goes here...
5
+ end
metadata ADDED
@@ -0,0 +1,131 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hustle_and_flow
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - thekompanee
8
+ - jfelchner
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-05-08 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: octokit
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '3.1'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '3.1'
28
+ - !ruby/object:Gem::Dependency
29
+ name: thor
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '0.19'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0.19'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rspec
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: 3.0.0beta
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: 3.0.0beta
56
+ - !ruby/object:Gem::Dependency
57
+ name: rspectacular
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: 0.33.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 0.33.0
70
+ - !ruby/object:Gem::Dependency
71
+ name: codeclimate-test-reporter
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: 0.3.0
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: 0.3.0
84
+ description: ''
85
+ email:
86
+ - support@thekompanee.com
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files:
90
+ - README.md
91
+ - LICENSE.txt
92
+ files:
93
+ - ".gitignore"
94
+ - ".ruby-version"
95
+ - ".travis.yml"
96
+ - Gemfile
97
+ - Gemfile.lock
98
+ - LICENSE.txt
99
+ - README.md
100
+ - Rakefile
101
+ - hustle_and_flow.gemspec
102
+ - lib/hustle_and_flow.rb
103
+ - lib/hustle_and_flow/version.rb
104
+ homepage: https://github.com/thekompanee/hustle_and_flow
105
+ licenses:
106
+ - MIT
107
+ metadata: {}
108
+ post_install_message:
109
+ rdoc_options:
110
+ - "--charset"
111
+ - UTF-8
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubyforge_project:
126
+ rubygems_version: 2.2.2
127
+ signing_key:
128
+ specification_version: 4
129
+ summary: Development Workflow Commands
130
+ test_files: []
131
+ has_rdoc: