share_some_love 0.0.5 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/LOVE_by_author.md +272 -0
- data/LOVE_by_gem.md +166 -0
- data/hearts/surfer.txt +5 -0
- data/lib/love/author.rb +22 -5
- data/lib/love/gem.rb +16 -4
- data/lib/love/share.rb +37 -20
- data/lib/love/version.rb +1 -1
- data/lib/love.rb +14 -13
- data/share_some_love.gemspec +2 -0
- data/spec/love/author_spec.rb +9 -0
- data/spec/love/basic_spec.rb +86 -0
- data/spec/spec_helper.rb +1 -1
- data/templates/html/_author.html.erb +24 -0
- data/templates/html/_gem.html.erb +22 -0
- data/templates/html/by_author.html.erb +21 -0
- data/templates/html/by_gem.html.erb +21 -0
- data/templates/md/_author.md.erb +14 -7
- data/templates/md/_gem.md.erb +13 -6
- data/templates/md/by_author.md.erb +9 -0
- data/templates/md/by_gem.md.erb +9 -0
- metadata +27 -23
- data/LOVE.md +0 -183
- data/_old_templates/html/footer.erb +0 -1
- data/_old_templates/html/head.erb +0 -12
- data/_old_templates/html/javascripts.erb +0 -2
- data/_old_templates/html/simple.erb +0 -17
- data/_old_templates/html/styles.erb +0 -2
- data/_old_templates/md/contributor.erb +0 -4
- data/_old_templates/md/footer.erb +0 -1
- data/_old_templates/md/gem.erb +0 -10
- data/_old_templates/md/head.erb +0 -2
- data/_old_templates/md/user.erb +0 -11
- data/tmp/lib/love/gem.rb +0 -53
- data/tmp/lib/love/html_renderer.rb +0 -23
- data/tmp/lib/love/person.rb +0 -60
- data/tmp/lib/love/render/overrides.rb +0 -29
- data/tmp/lib/love/render.rb +0 -35
- data/tmp/lib/love/site.rb +0 -21
- data/tmp/lib/love/thank_words.rb +0 -96
- data/tmp/lib/love/thanks.rb +0 -50
- data/tmp/lib/love/version.rb +0 -3
- data/tmp/lib/love.rb +0 -39
data/lib/love.rb
CHANGED
@@ -7,18 +7,11 @@ require 'yaml'
|
|
7
7
|
module Love
|
8
8
|
class << self
|
9
9
|
|
10
|
-
attr_reader :by_gemname, :for_site, :
|
10
|
+
attr_reader :by_gemname, :for_site, :root, :lang, :octokit, :check_author
|
11
|
+
attr_accessor :gems, :authors
|
11
12
|
|
12
13
|
def share_for(args)
|
13
|
-
|
14
|
-
for_site = args.include? 'site'
|
15
|
-
|
16
|
-
@by_gemname = by_gemname
|
17
|
-
@for_site = for_site
|
18
|
-
@root = Pathname(__FILE__).parent
|
19
|
-
@lang = 'en'
|
20
|
-
@gems = []
|
21
|
-
@authors = []
|
14
|
+
config(args)
|
22
15
|
|
23
16
|
lets_start_from_heart!
|
24
17
|
|
@@ -28,6 +21,16 @@ module Love
|
|
28
21
|
share_love
|
29
22
|
end
|
30
23
|
|
24
|
+
def config(args = [])
|
25
|
+
@by_gemname = args.include? 'by_gem'
|
26
|
+
@for_site = args.include? 'site'
|
27
|
+
@check_author = args.include? '-v'
|
28
|
+
@root = Pathname(__FILE__).parent
|
29
|
+
@lang = 'en'
|
30
|
+
@gems = []
|
31
|
+
@authors = []
|
32
|
+
end
|
33
|
+
|
31
34
|
def login_user
|
32
35
|
puts 'Please, enter your github credentials that Octokit could work without github guest requests restrictions'
|
33
36
|
puts 'login:'
|
@@ -45,14 +48,12 @@ module Love
|
|
45
48
|
Bundler.load.specs.each do |spec|
|
46
49
|
gem = Love::Gem.new(spec)
|
47
50
|
@gems << gem
|
48
|
-
@authors << gem.authors
|
49
51
|
end
|
50
|
-
@authors = @authors.flatten.uniq
|
51
52
|
end
|
52
53
|
|
53
54
|
def share_love
|
54
55
|
if for_site
|
55
|
-
Love::
|
56
|
+
Love::Share.html by_gemname
|
56
57
|
else
|
57
58
|
Love::Share.md by_gemname
|
58
59
|
end
|
data/share_some_love.gemspec
CHANGED
@@ -17,6 +17,8 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.add_dependency 'bundler'
|
18
18
|
s.add_dependency 'octokit'
|
19
19
|
|
20
|
+
s.add_development_dependency 'rspec'
|
21
|
+
|
20
22
|
s.files = `git ls-files`.split("\n")
|
21
23
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
22
24
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
@@ -0,0 +1,86 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Love do
|
4
|
+
|
5
|
+
describe '#config' do
|
6
|
+
|
7
|
+
it 'should set property by_gemname to true if there arg by_gem' do
|
8
|
+
Love.config ['by_gem']
|
9
|
+
Love.by_gemname.should be_true
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'should set property by_gemname to false if there no arg by_gem' do
|
13
|
+
Love.config
|
14
|
+
Love.by_gemname.should be_false
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'should set property for_site to true if there arg site' do
|
18
|
+
Love.config ['site']
|
19
|
+
Love.for_site.should be_true
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should set property for_site to false if there no arg site' do
|
23
|
+
Love.config
|
24
|
+
Love.for_site.should be_false
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'should set property check_author to true if there arg -v' do
|
28
|
+
Love.config ['-v']
|
29
|
+
Love.check_author.should be_true
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should set property check_author to false if there no arg -v' do
|
33
|
+
Love.config
|
34
|
+
Love.check_author.should be_false
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'should set property root to lib folder' do
|
38
|
+
Love.config
|
39
|
+
Love.root.should == Pathname(__FILE__).parent.parent.parent.join('lib')
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'should set property lang to en' do
|
43
|
+
Love.config
|
44
|
+
Love.lang.should == 'en'
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
describe '#login_user' do
|
50
|
+
|
51
|
+
it 'should ask user to login and create octokit client' do
|
52
|
+
STDIN.should_receive(:gets).twice.and_return 'dummy'
|
53
|
+
STDOUT.should_receive(:puts).exactly(3).times
|
54
|
+
Love.login_user
|
55
|
+
Love.octokit.class.should == Octokit::Client
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#parse_gemfile' do
|
61
|
+
|
62
|
+
it 'should run bundler to check current runtime and add gems from there' do
|
63
|
+
pending
|
64
|
+
Bundler.should_receive(:load)
|
65
|
+
Love.parse_gemfile
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|
69
|
+
|
70
|
+
describe '#share_love' do
|
71
|
+
|
72
|
+
it 'should trigger html generation if for site' do
|
73
|
+
Love.config ['site']
|
74
|
+
Love::Share.should_receive(:html)
|
75
|
+
Love.share_love
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'should trigger html generation if for gem' do
|
79
|
+
Love.config
|
80
|
+
Love::Share.should_receive(:md)
|
81
|
+
Love.share_love
|
82
|
+
end
|
83
|
+
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
require '
|
1
|
+
require 'love'
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<% author = member %>
|
2
|
+
<li class="author">
|
3
|
+
<% if author.info %>
|
4
|
+
<img src="<%= author.info.avatar_url %>" alt="<%= author.name %>" class="author-avatar">
|
5
|
+
<div class="author-info">
|
6
|
+
Follow on github: <a href="http://github.com/<%= author.info.login %>"><%= "@#{author.info.login}" %></a>
|
7
|
+
</div>
|
8
|
+
<% end %>
|
9
|
+
<div class="author-thanks">
|
10
|
+
<span class="author-begin-thanks"><%= ThankWords.begin_author %> </span>
|
11
|
+
<% if author.info %>
|
12
|
+
<span class="author-name"><a href="http://github.com/<%= author.info.login %>"><%= author.name %></a> </span>
|
13
|
+
<% else %>
|
14
|
+
<span class="author-name"><%= author.name %> </span>
|
15
|
+
<% end %>
|
16
|
+
<span class="author-middle-thanks"><%= ThankWords.middle_author %></span>
|
17
|
+
</div>
|
18
|
+
<div class="author-gems">
|
19
|
+
<%= author.gems.map { |it| "<span class=\"author-gems-gem-name\"><a href=\"#{it.url}\">#{it.name}</a></span>" }.join('<span class="delimeter">, </span>') %><span class="dot">.</span>
|
20
|
+
</div>
|
21
|
+
<div class="author-end-thanks">
|
22
|
+
<%= ThankWords.end_author %>
|
23
|
+
</div>
|
24
|
+
</li>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<% gem = member %>
|
2
|
+
<li class="gem">
|
3
|
+
<% if gem.authors.all?(&:info) %>
|
4
|
+
<div class="gem-authors-avatars">
|
5
|
+
<%= gem.authors.map { |a| "<a href=\"http://github.com/#{a.info.login}\"><img src=\"#{a.info.avatar_url}\" alt=\"#{a.name}\"></a>" }.join('<span class="delimeter"> </span>') %>
|
6
|
+
</div>
|
7
|
+
<% end %>
|
8
|
+
|
9
|
+
<div class="gem-thanks">
|
10
|
+
<span class="gem-begin-thanks"><%= ThankWords.begin_author %> </span>
|
11
|
+
<% if gem.authors.all?(&:info) %>
|
12
|
+
<span class="gem-authors-names"><%= gem.authors.map { |it| "<span class=\"gem-authors-names-author-name\"><a href=\"http://github.com/#{it.info.login}\">#{it.name}</a></span>" }.join('<span class="gem-authors-names-delimeter">, </span>') %>
|
13
|
+
<% else %>
|
14
|
+
<span class="gem-authors-names"><%= gem.authors.map(&:name).map { |it| "<span class=\"gem-authors-names-author-name\">#{it}</span>" }.join('<span class="gem-authors-names-delimeter">, </span>') %>
|
15
|
+
<% end %>
|
16
|
+
<span class="gem-middle-thanks"><%= ThankWords.middle_author %> </span>
|
17
|
+
<span class="gem-name"><a href="<%= gem.url %>"><%= gem.name %></a>.</span>
|
18
|
+
</div>
|
19
|
+
<div class="gem-thanks-end">
|
20
|
+
<%= ThankWords.end_author %>
|
21
|
+
</div>
|
22
|
+
</li>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>
|
5
|
+
<%= title = ThankWords.title_thanks %>
|
6
|
+
</title>
|
7
|
+
<style><%= defined?(style_content) ? style_content : '' %></style>
|
8
|
+
<script type="text/javascript"><%= defined?(script_content) ? script_content : '' %></script>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<h1 class="title"><%= title %></h1>
|
12
|
+
<ul class="authors">
|
13
|
+
|
14
|
+
<%= content %>
|
15
|
+
|
16
|
+
</ul>
|
17
|
+
<div class="generated-by">
|
18
|
+
<%= defined?(generated_by_content) ? generated_by_content : '' %>
|
19
|
+
</div>
|
20
|
+
</body>
|
21
|
+
</html>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>
|
5
|
+
<%= title = ThankWords.title_thanks %>
|
6
|
+
</title>
|
7
|
+
<style><%= defined?(style_content) ? style_content : '' %></style>
|
8
|
+
<script type="text/javascript"><%= defined?(script_content) ? script_content : '' %></script>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<h1 class="title"><%= title %></h1>
|
12
|
+
<ul class="gems">
|
13
|
+
|
14
|
+
<%= content %>
|
15
|
+
|
16
|
+
</ul>
|
17
|
+
<div class="generated-by">
|
18
|
+
<%= defined?(generated_by_content) ? generated_by_content : '' %>
|
19
|
+
</div>
|
20
|
+
</body>
|
21
|
+
</html>
|
data/templates/md/_author.md.erb
CHANGED
@@ -1,9 +1,16 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
<% author = member %>
|
2
|
+
<% if author.info %>
|
3
|
+
![<%= author.name %>](<%= author.info.avatar_url %>)
|
4
|
+
Follow on github: [<%= "@#{author.info.login}" %>](http://github.com/<%= author.info.login %>)
|
5
|
+
<% end %>
|
6
|
+
<% if author.info %>
|
7
|
+
<%= ThankWords.begin_author %> [**<%= author.name %>**](http://github.com/<%= author.info.login %>) <%= ThankWords.middle_author %>
|
8
|
+
<% else %>
|
9
|
+
<%= ThankWords.begin_author %> **<%= author.name %>** <%= ThankWords.middle_author %>
|
10
|
+
<% end %>
|
6
11
|
|
7
|
-
|
12
|
+
<%= author.gems.map { |it| "[**#{it.name}**](#{it.url})" }.join(', ') %>.
|
8
13
|
|
9
|
-
|
14
|
+
<%= ThankWords.end_author %>
|
15
|
+
|
16
|
+
--------
|
data/templates/md/_gem.md.erb
CHANGED
@@ -1,8 +1,15 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
<% gem = member %>
|
2
|
+
<% if gem.authors.all?(&:info) %>
|
3
|
+
<%= gem.authors.map { |a| "![#{a.name}](#{a.info.avatar_url})" }.join(' ') %>
|
4
|
+
<% end %>
|
4
5
|
|
5
|
-
|
6
|
-
|
6
|
+
<% if gem.authors.all?(&:info) %>
|
7
|
+
<%= ThankWords.begin_author %> <%= gem.authors.map { |it| "[**#{it.name}**](http://github.com/#{it.info.login})" }.join(', ') %>
|
8
|
+
<% else %>
|
9
|
+
<%= ThankWords.begin_author %> <%= gem.authors.map(&:name).map { |it| "**#{it}**" }.join(', ') %>
|
10
|
+
<% end %>
|
11
|
+
<%= ThankWords.middle_author %> [**<%= gem.name %>**](<%= gem.url %>).
|
7
12
|
|
8
|
-
|
13
|
+
<%= ThankWords.end_author %>
|
14
|
+
|
15
|
+
------------
|
@@ -1,3 +1,12 @@
|
|
1
|
+
```ascii
|
2
|
+
<%= defined?(begin_content) ? begin_content : '' %>
|
3
|
+
```
|
4
|
+
|
1
5
|
#### <%= ThankWords.title_thanks %>
|
2
6
|
|
3
7
|
<%= content %>
|
8
|
+
|
9
|
+
<%= defined?(generated_by_content) ? generated_by_content : '' %>
|
10
|
+
```ascii
|
11
|
+
<%= defined?(end_content) ? end_content : '' %>
|
12
|
+
```
|
data/templates/md/by_gem.md.erb
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
```ascii
|
2
|
+
<%= defined?(begin_content) ? begin_content : '' %>
|
3
|
+
```
|
4
|
+
|
1
5
|
#### <%= ThankWords.title_thanks %>
|
2
6
|
|
3
7
|
<%= content %>
|
8
|
+
|
9
|
+
<%= defined?(generated_by_content) ? generated_by_content : '' %>
|
10
|
+
```ascii
|
11
|
+
<%= defined?(end_content) ? end_content : '' %>
|
12
|
+
```
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: share_some_love
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gazay
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-06-
|
11
|
+
date: 2013-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
description: If you ever wander to say thank you to guys who did this great job on
|
42
56
|
your gem or your project parts - it's really great opportunity
|
43
57
|
email:
|
@@ -52,22 +66,14 @@ files:
|
|
52
66
|
- CHANGELOG.md
|
53
67
|
- Gemfile
|
54
68
|
- Gemfile.lock
|
55
|
-
-
|
69
|
+
- LOVE_by_author.md
|
70
|
+
- LOVE_by_gem.md
|
56
71
|
- README.md
|
57
72
|
- Rakefile
|
58
|
-
- _old_templates/html/footer.erb
|
59
|
-
- _old_templates/html/head.erb
|
60
|
-
- _old_templates/html/javascripts.erb
|
61
|
-
- _old_templates/html/simple.erb
|
62
|
-
- _old_templates/html/styles.erb
|
63
|
-
- _old_templates/md/contributor.erb
|
64
|
-
- _old_templates/md/footer.erb
|
65
|
-
- _old_templates/md/gem.erb
|
66
|
-
- _old_templates/md/head.erb
|
67
|
-
- _old_templates/md/user.erb
|
68
73
|
- bin/love
|
69
74
|
- bin/share_some_love
|
70
75
|
- hearts/ascii1.txt
|
76
|
+
- hearts/surfer.txt
|
71
77
|
- lib/love.rb
|
72
78
|
- lib/love/author.rb
|
73
79
|
- lib/love/gem.rb
|
@@ -75,23 +81,19 @@ files:
|
|
75
81
|
- lib/love/thank_words.rb
|
76
82
|
- lib/love/version.rb
|
77
83
|
- share_some_love.gemspec
|
84
|
+
- spec/love/author_spec.rb
|
85
|
+
- spec/love/basic_spec.rb
|
78
86
|
- spec/spec_helper.rb
|
79
87
|
- templates/.gitignore
|
88
|
+
- templates/html/_author.html.erb
|
89
|
+
- templates/html/_gem.html.erb
|
90
|
+
- templates/html/by_author.html.erb
|
91
|
+
- templates/html/by_gem.html.erb
|
80
92
|
- templates/md/_author.md.erb
|
81
93
|
- templates/md/_gem.md.erb
|
82
94
|
- templates/md/by_author.md.erb
|
83
95
|
- templates/md/by_gem.md.erb
|
84
96
|
- thank_words/en.yml
|
85
|
-
- tmp/lib/love.rb
|
86
|
-
- tmp/lib/love/gem.rb
|
87
|
-
- tmp/lib/love/html_renderer.rb
|
88
|
-
- tmp/lib/love/person.rb
|
89
|
-
- tmp/lib/love/render.rb
|
90
|
-
- tmp/lib/love/render/overrides.rb
|
91
|
-
- tmp/lib/love/site.rb
|
92
|
-
- tmp/lib/love/thank_words.rb
|
93
|
-
- tmp/lib/love/thanks.rb
|
94
|
-
- tmp/lib/love/version.rb
|
95
97
|
homepage: https://github.com/gazay/share_some_love
|
96
98
|
licenses: []
|
97
99
|
metadata: {}
|
@@ -116,5 +118,7 @@ signing_key:
|
|
116
118
|
specification_version: 4
|
117
119
|
summary: I want you to share some love to OSS developers!
|
118
120
|
test_files:
|
121
|
+
- spec/love/author_spec.rb
|
122
|
+
- spec/love/basic_spec.rb
|
119
123
|
- spec/spec_helper.rb
|
120
124
|
has_rdoc:
|
data/LOVE.md
DELETED
@@ -1,183 +0,0 @@
|
|
1
|
-
#### I'd like to thank all these people! Believe me - they are awesome!
|
2
|
-
|
3
|
-
*
|
4
|
-
![Bob Aman](https://secure.gravatar.com/avatar/56ee28134dd0776825445e3551979b14?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
5
|
-
Follow on github: [@sporkmonger](http://github.com/sporkmonger)
|
6
|
-
|
7
|
-
Thank you so much **Bob Aman** for being so nice to create
|
8
|
-
|
9
|
-
**addressable**.
|
10
|
-
|
11
|
-
I wanna hug you someday and say in person what great job you done!
|
12
|
-
*
|
13
|
-
![André Arko](https://secure.gravatar.com/avatar/4c3ed917e59156a36212d48155831482?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
14
|
-
Follow on github: [@indirect](http://github.com/indirect)
|
15
|
-
|
16
|
-
I appreciate time of **André Arko** for being so nice to create
|
17
|
-
|
18
|
-
**bundler**.
|
19
|
-
|
20
|
-
Enjoy what you did as I am!
|
21
|
-
*
|
22
|
-
![Terence Lee](https://secure.gravatar.com/avatar/efb7c66871043330ce1310a9bdd0aaf6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
23
|
-
Follow on github: [@hone](http://github.com/hone)
|
24
|
-
|
25
|
-
My sincere thanks to **Terence Lee** for creating and maintaining
|
26
|
-
|
27
|
-
**bundler**.
|
28
|
-
|
29
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
30
|
-
*
|
31
|
-
![Carl Lerche](https://secure.gravatar.com/avatar/da5274b27cc6c0f505495bf5d504575d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
32
|
-
Follow on github: [@carllerche](http://github.com/carllerche)
|
33
|
-
|
34
|
-
I appreciate time of **Carl Lerche** for made this idea happened, I mean
|
35
|
-
|
36
|
-
**bundler**.
|
37
|
-
|
38
|
-
Just be so cool as you are and remember that your work never being useless!
|
39
|
-
*
|
40
|
-
![Yehuda Katz](https://secure.gravatar.com/avatar/428167a3ec72235ba971162924492609?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
41
|
-
Follow on github: [@wycats](http://github.com/wycats)
|
42
|
-
|
43
|
-
My sincere thanks to **Yehuda Katz** for spending time on
|
44
|
-
|
45
|
-
**bundler**.
|
46
|
-
|
47
|
-
Enjoy what you did as I am!
|
48
|
-
*
|
49
|
-
![Nick Sieger](https://secure.gravatar.com/avatar/526d60de6472502bb570a9df2842b33b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
50
|
-
Follow on github: [@nicksieger](http://github.com/nicksieger)
|
51
|
-
|
52
|
-
Thank you very much **Nick Sieger** for spending time on
|
53
|
-
|
54
|
-
**multipart-post**.
|
55
|
-
|
56
|
-
I wanna hug you someday and say in person what great job you done!
|
57
|
-
*
|
58
|
-
Thank you very much **Rick Olson** for being so nice to create
|
59
|
-
|
60
|
-
**faraday**.
|
61
|
-
|
62
|
-
I wanna hug you someday and say in person what great job you done!
|
63
|
-
*
|
64
|
-
![Erik Michaels-Ober](https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
65
|
-
Follow on github: [@sferik](http://github.com/sferik)
|
66
|
-
|
67
|
-
I appreciate time of **Erik Michaels-Ober** for creating and maintaining
|
68
|
-
|
69
|
-
**faraday_middleware**.
|
70
|
-
|
71
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
72
|
-
*
|
73
|
-
![Wynn Netherland](https://secure.gravatar.com/avatar/7e19cd5486b5d6dc1ef90e671ba52ae0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
74
|
-
Follow on github: [@pengwynn](http://github.com/pengwynn)
|
75
|
-
|
76
|
-
My sincere thanks to **Wynn Netherland** for spending time on
|
77
|
-
|
78
|
-
**faraday_middleware**.
|
79
|
-
|
80
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
81
|
-
*
|
82
|
-
![Michael Bleigh](https://secure.gravatar.com/avatar/69dc78b59ef008c58e6e842f9f3e0624?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
83
|
-
Follow on github: [@mbleigh](http://github.com/mbleigh)
|
84
|
-
|
85
|
-
Thank you very much **Michael Bleigh** for made this idea happened, I mean
|
86
|
-
|
87
|
-
**hashie**.
|
88
|
-
|
89
|
-
I wanna hug you someday and say in person what great job you done!
|
90
|
-
*
|
91
|
-
![Jerry Cheung](https://secure.gravatar.com/avatar/acd4b5803e806bf0ed70299f15cd6d18?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
92
|
-
Follow on github: [@jch](http://github.com/jch)
|
93
|
-
|
94
|
-
I appreciate time of **Jerry Cheung** for made this idea happened, I mean
|
95
|
-
|
96
|
-
**hashie**.
|
97
|
-
|
98
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
99
|
-
*
|
100
|
-
![Michael Bleigh](https://secure.gravatar.com/avatar/69dc78b59ef008c58e6e842f9f3e0624?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
101
|
-
Follow on github: [@mbleigh](http://github.com/mbleigh)
|
102
|
-
|
103
|
-
I'd like to thank **Michael Bleigh** for making my life easier by creating
|
104
|
-
|
105
|
-
**multi_json**.
|
106
|
-
|
107
|
-
Just be so cool as you are and remember that your work never being useless!
|
108
|
-
*
|
109
|
-
![Josh Kalderimis](https://secure.gravatar.com/avatar/21b21efe14359ec323f9a70464b91e39?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
110
|
-
Follow on github: [@joshk](http://github.com/joshk)
|
111
|
-
|
112
|
-
My sincere thanks to **Josh Kalderimis** for spending time on
|
113
|
-
|
114
|
-
**multi_json**.
|
115
|
-
|
116
|
-
I wanna hug you someday and say in person what great job you done!
|
117
|
-
*
|
118
|
-
![Erik Michaels-Ober](https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
119
|
-
Follow on github: [@sferik](http://github.com/sferik)
|
120
|
-
|
121
|
-
I appreciate time of **Erik Michaels-Ober** for creating and maintaining
|
122
|
-
|
123
|
-
**multi_json**.
|
124
|
-
|
125
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
126
|
-
*
|
127
|
-
![Pavel Pravosud](https://secure.gravatar.com/avatar/df08a0889bad0229c372f702976a3da6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
128
|
-
Follow on github: [@rwz](http://github.com/rwz)
|
129
|
-
|
130
|
-
My sincere thanks to **Pavel Pravosud** for making my life easier by creating
|
131
|
-
|
132
|
-
**multi_json**.
|
133
|
-
|
134
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
135
|
-
*
|
136
|
-
I'd like to thank **Keith Rarick** for creating and maintaining
|
137
|
-
|
138
|
-
**netrc**.
|
139
|
-
|
140
|
-
Just be so cool as you are and remember that your work never being useless!
|
141
|
-
*
|
142
|
-
![geemus (Wesley Beary)](https://secure.gravatar.com/avatar/e3191b55da8ada73c3e1ada98a63af6e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
143
|
-
Follow on github: [@geemus](http://github.com/geemus)
|
144
|
-
|
145
|
-
My sincere thanks to **geemus (Wesley Beary)** for spending time on
|
146
|
-
|
147
|
-
**netrc**.
|
148
|
-
|
149
|
-
I wanna hug you someday and say in person what great job you done!
|
150
|
-
*
|
151
|
-
![Wynn Netherland](https://secure.gravatar.com/avatar/7e19cd5486b5d6dc1ef90e671ba52ae0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
152
|
-
Follow on github: [@pengwynn](http://github.com/pengwynn)
|
153
|
-
|
154
|
-
I'd like to thank **Wynn Netherland** for spending time on
|
155
|
-
|
156
|
-
**octokit**.
|
157
|
-
|
158
|
-
I wanna hug you someday and say in person what great job you done!
|
159
|
-
*
|
160
|
-
![Erik Michaels-Ober](https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
161
|
-
Follow on github: [@sferik](http://github.com/sferik)
|
162
|
-
|
163
|
-
My sincere thanks to **Erik Michaels-Ober** for made this idea happened, I mean
|
164
|
-
|
165
|
-
**octokit**.
|
166
|
-
|
167
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
168
|
-
*
|
169
|
-
My sincere thanks to **Clint Shryock** for creating and maintaining
|
170
|
-
|
171
|
-
**octokit**.
|
172
|
-
|
173
|
-
Just be so cool as you are and remember that your work never being useless!
|
174
|
-
*
|
175
|
-
![gazay](https://secure.gravatar.com/avatar/d52cc558a29696bb722492259f3f52de?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png)
|
176
|
-
Follow on github: [@gazay](http://github.com/gazay)
|
177
|
-
|
178
|
-
Thank you very much **gazay** for making my life easier by creating
|
179
|
-
|
180
|
-
**share_some_love**.
|
181
|
-
|
182
|
-
I wanna shake your hand and say that wihtout your work on it I would spent much more time and power!
|
183
|
-
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= footer_content %>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>
|
5
|
-
<%= title || 'Thank you all!' %>
|
6
|
-
</title>
|
7
|
-
<style>
|
8
|
-
body{margin:0;width:100%;height:100%} body,td,input,textarea,select{font-family:arial,sans-serif}
|
9
|
-
<%= style %>
|
10
|
-
</style>
|
11
|
-
<script type='text/javascript'>
|
12
|
-
</script>
|
13
|
-
</head>
|
14
|
-
<body>
|
15
|
-
<%= content %>
|
16
|
-
</body>
|
17
|
-
</html>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= footer_few_words %>
|