brewfest 1.0.20 → 1.0.21
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.
- checksums.yaml +4 -4
- data/lib/brewfest.rb +25 -19
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12b7b0b8359d8d88d28fec1985add9aab27269ab
|
|
4
|
+
data.tar.gz: c00d1a6cd74b83b8153647812214c045d2ec5edf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10d876b4c568c6fa615426e8ab9545679e40cd6a6fe665d4b465e67da98676ebc2dcd8b3bee79fb8262bf68c7934d41d6a2e0d1a5857edc5530d5898d09928bb
|
|
7
|
+
data.tar.gz: 2cf479a7822e31d1625db65615f87024fd0f4477abbdc0e4fe1cf5f89bd017109f35151bbe409cc3930b105753beb0df528e543a3e212248c5d605637cb1fe22
|
data/lib/brewfest.rb
CHANGED
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
require 'rake'
|
|
2
|
+
|
|
3
|
+
task :git_default_push do
|
|
4
|
+
puts 'pushing like a boss'
|
|
3
5
|
end
|
|
4
|
-
def somegit
|
|
5
|
-
namespace :git do
|
|
6
|
-
#desc 'list git repositories associated with brewfest endeavors'
|
|
7
|
-
task :test do
|
|
8
|
-
require 'octokit'
|
|
9
|
-
require 'brewfest'
|
|
10
|
-
#dance
|
|
11
|
-
Octokit.configure do |c|
|
|
12
|
-
c.login = ENV['GITHUBUSERNAME']
|
|
13
|
-
c.password = ENV['GITHUBPASSWORD']
|
|
14
|
-
end
|
|
15
|
-
#puts Octokit.user
|
|
16
|
-
Octokit.repositories.each do |repo|
|
|
17
|
-
puts repo.name
|
|
18
|
-
end
|
|
19
|
-
end
|
|
20
|
-
end
|
|
21
6
|
end
|
|
7
|
+
#def dance
|
|
8
|
+
# puts 'everybody dance now'
|
|
9
|
+
#end
|
|
10
|
+
#def somegit
|
|
11
|
+
# namespace :git do
|
|
12
|
+
# #desc 'list git repositories associated with brewfest endeavors'
|
|
13
|
+
# task :test do
|
|
14
|
+
# require 'octokit'
|
|
15
|
+
# require 'brewfest'
|
|
16
|
+
# #dance
|
|
17
|
+
# Octokit.configure do |c|
|
|
18
|
+
# c.login = ENV['GITHUBUSERNAME']
|
|
19
|
+
# c.password = ENV['GITHUBPASSWORD']
|
|
20
|
+
# end
|
|
21
|
+
# #puts Octokit.user
|
|
22
|
+
# Octokit.repositories.each do |repo|
|
|
23
|
+
# puts repo.name
|
|
24
|
+
# end
|
|
25
|
+
# end
|
|
26
|
+
# end
|
|
27
|
+
#end
|