Skip to content

Commit 5a08b50

Browse files
committed
User Profiles now open in a new tab
1 parent 6718249 commit 5a08b50

File tree

143 files changed

+10282
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+10282
-1
lines changed

.swp

12 KB
Binary file not shown.

Cheffile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
site "http://community.opscode.com/api/v1"
2+
3+
cookbook 'apt'
4+
cookbook 'build-essential'
5+
cookbook 'mysql'
6+
cookbook 'ruby_build'
7+
cookbook 'nodejs', git: 'https://github.com/mdxp/nodejs-cookbook'
8+
cookbook 'rbenv', git: 'https://github.com/fnichol/chef-rbenv'
9+
cookbook 'vim'

Cheffile.lock

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
SITE
2+
remote: http://community.opscode.com/api/v1
3+
specs:
4+
apt (2.4.0)
5+
build-essential (2.0.4)
6+
mysql (5.3.6)
7+
yum-mysql-community (>= 0.0.0)
8+
ruby_build (0.8.0)
9+
vim (1.1.2)
10+
yum (3.2.2)
11+
yum-epel (0.3.6)
12+
yum (~> 3.0)
13+
yum-mysql-community (0.1.10)
14+
yum (>= 3.0)
15+
16+
GIT
17+
remote: https://github.com/fnichol/chef-rbenv
18+
ref: master
19+
sha: 0a3018634bafe58ad21c6ee271af015220e444b9
20+
specs:
21+
rbenv (0.7.3)
22+
23+
GIT
24+
remote: https://github.com/mdxp/nodejs-cookbook
25+
ref: master
26+
sha: e2415cd8c4e03dccf21d7ef6ca31e1c5c81467ca
27+
specs:
28+
nodejs (1.3.0)
29+
apt (>= 0.0.0)
30+
build-essential (>= 0.0.0)
31+
yum-epel (>= 0.0.0)
32+
33+
DEPENDENCIES
34+
apt (>= 0)
35+
build-essential (>= 0)
36+
mysql (>= 0)
37+
nodejs (>= 0)
38+
rbenv (>= 0)
39+
ruby_build (>= 0)
40+
vim (>= 0)
41+

app/views/users/show.html.haml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
%ul.repos
9393
-skill.repos.each do |repo|
9494
%li
95-
=link_to(repo[:name], repo[:url],:class=>'track','data-action' =>'view repo', 'data-from' => 'profile skill')
95+
=link_to(repo[:name], repo[:url],:class=>'track','data-action' =>'view repo', 'data-from' => 'profile skill', :target => '_blank')
9696
-if skill.has_protips?
9797
%h4 Protips shared
9898
%ul.protips

config/environments/development.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Coderwall::Application.configure do
22
config.threadsafe! unless $rails_rake_task
3+
4+
require 'sidekiq/testing/inline'
35

46
config.action_controller.perform_caching = false
57
config.action_dispatch.best_standards_support = :builtin

cookbooks/apt/CHANGELOG.md

Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
apt Cookbook CHANGELOG
2+
======================
3+
This file is used to list changes made in each version of the apt cookbook.
4+
5+
v2.4.0 (2014-05-15)
6+
-------------------
7+
- [COOK-4534]: Add option to update apt cache at compile time
8+
9+
10+
v2.3.10 (2014-04-23)
11+
--------------------
12+
- [COOK-4512] Bugfix: Use empty PATH if PATH is nil
13+
14+
15+
v2.3.8 (2014-02-14)
16+
-------------------
17+
### Bug
18+
- **[COOK-4287](https://tickets.opscode.com/browse/COOK-4287)** - Cleanup the Kitchen
19+
20+
21+
v2.3.6
22+
------
23+
* [COOK-4154] - Add chefspec matchers.rb file to apt cookbook
24+
* [COOK-4102] - Only index created repository
25+
26+
27+
v2.3.6
28+
------
29+
* [COOK-4154] - Add chefspec matchers.rb file to apt cookbook
30+
* [COOK-4102] - Only index created repository
31+
32+
33+
v2.3.4
34+
------
35+
No change. Version bump for toolchain sanity
36+
37+
38+
v2.3.2
39+
------
40+
- [COOK-3905] apt-get-update-periodic: configuration for the update period
41+
- Updating style for rubocops
42+
- Updating test-kitchen harness
43+
44+
45+
v2.3.0
46+
------
47+
### Bug
48+
- **[COOK-3812](https://tickets.opscode.com/browse/COOK-3812)** - Add a way to bypass the apt existence check
49+
50+
### Improvement
51+
- **[COOK-3567](https://tickets.opscode.com/browse/COOK-3567)** - Allow users to bypass apt-cache via attributes
52+
53+
54+
v2.2.1
55+
------
56+
### Improvement
57+
- **[COOK-664](https://tickets.opscode.com/browse/COOK-664)** - Check platform before running apt-specific commands
58+
59+
60+
v2.2.0
61+
------
62+
### Bug
63+
- **[COOK-3707](https://tickets.opscode.com/browse/COOK-3707)** - multiple nics confuse apt::cacher-client
64+
65+
v2.1.2
66+
------
67+
### Improvement
68+
- **[COOK-3551](https://tickets.opscode.com/browse/COOK-3551)** - Allow user to set up a trusted APT repository
69+
70+
v2.1.1
71+
------
72+
### Bug
73+
- **[COOK-1856](https://tickets.opscode.com/browse/COOK-1856)** - Match GPG keys without case sensitivity
74+
75+
v2.1.0
76+
------
77+
- [COOK-3426]: cacher-ng fails with restrict_environment set to true
78+
- [COOK-2859]: cacher-client executes out of order
79+
- [COOK-3052]: Long GPG keys are downloaded on every run
80+
- [COOK-1856]: apt cookbook should match keys without case sensitivity
81+
- [COOK-3255]: Attribute name incorrect in README
82+
- [COOK-3225]: Call use_inline_resources only if defined
83+
- [COOK-3386]: Cache dir for apt-cacher-ng
84+
- [COOK-3291]: apt_repository: enable usage of a keyserver on port 80
85+
- Greatly expanded test coverage with ChefSpec and Test-Kitchen
86+
87+
v2.0.0
88+
------
89+
### Bug
90+
91+
- [COOK-2258]: apt: LWRP results in error under why-run mode in apt 1.9.0 cookbook
92+
93+
v1.10.0
94+
-------
95+
### Improvement
96+
97+
- [COOK-2885]: Improvements for apt cache server search
98+
99+
### Bug
100+
101+
- [COOK-2441]: Apt recipe broken in new chef version
102+
- [COOK-2660]: Create Debian 6.0 "squeeze" specific template for
103+
apt-cacher-ng
104+
105+
v1.9.2
106+
------
107+
- [COOK-2631] - Create Ubuntu 10.04 specific template for apt-cacher-ng
108+
109+
v1.9.0
110+
------
111+
- [COOK-2185] - Proxy for apt-key
112+
- [COOK-2338] - Support pinning by glob() or regexp
113+
114+
v1.8.4
115+
------
116+
- [COOK-2171] - Update README to clarify required Chef version: 10.18.0
117+
or higher.
118+
119+
v1.8.2
120+
------
121+
- [COOK-2112] - need [] around "arch" in sources.list entries
122+
- [COOK-2171] - fixes a regression in the notification
123+
124+
v1.8.0
125+
------
126+
- [COOK-2143] - Allow for a custom cacher-ng port
127+
- [COOK-2171] - On `apt_repository.run_action(:add)` the source file
128+
is not created.
129+
- [COOK-2184] - apt::cacher-ng, use `cacher_port` attribute in
130+
acng.conf
131+
132+
v1.7.0
133+
------
134+
- [COOK-2082] - add "arch" parameter to apt_repository LWRP
135+
136+
v1.6.0
137+
------
138+
- [COOK-1893] - `apt_preference` use "`package_name`" resource instead of "name"
139+
- [COOK-1894] - change filename for sources.list.d files
140+
- [COOK-1914] - Wrong dir permissions for /etc/apt/preferences.d/
141+
- [COOK-1942] - README.md has wrong name for the keyserver attribute
142+
- [COOK-2019] - create 01proxy before any other apt-get updates get executed
143+
144+
v1.5.2
145+
------
146+
- [COOK-1682] - use template instead of file resource in apt::cacher-client
147+
- [COOK-1875] - cacher-client should be Environment-aware
148+
149+
V1.5.0
150+
------
151+
- [COOK-1500] - Avoid triggering apt-get update
152+
- [COOK-1548] - Add execute commands for autoclean and autoremove
153+
- [COOK-1591] - Setting up the apt proxy should leave https
154+
connections direct
155+
- [COOK-1596] - execute[apt-get-update-periodic] never runs
156+
- [COOK-1762] - create /etc/apt/preferences.d directory
157+
- [COOK-1776] - apt key check isn't idempotent
158+
159+
v1.4.8
160+
------
161+
* Adds test-kitchen support
162+
- [COOK-1435] - repository lwrp is not idempotent with http key
163+
164+
v1.4.6
165+
------
166+
- [COOK-1530] - apt_repository isn't aware of update-success-stamp
167+
file (also reverts COOK-1382 patch).
168+
169+
v1.4.4
170+
------
171+
- [COOK-1229] - Allow cacher IP to be set manually in non-Chef Solo
172+
environments
173+
- [COOK-1530] - Immediately update apt-cache when sources.list file is dropped off
174+
175+
v1.4.2
176+
------
177+
- [COOK-1155] - LWRP for apt pinning
178+
179+
v1.4.0
180+
------
181+
- [COOK-889] - overwrite existing repo source files
182+
- [COOK-921] - optionally use cookbook\_file or remote\_file for key
183+
- [COOK-1032] - fixes problem with apt repository key installation

0 commit comments

Comments
 (0)