houston-core 0.6.1 → 0.6.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be13a8e98d89a156ac6a8b400cd2dd6740b0c5e4
4
- data.tar.gz: e74865d4a2f5e58f4f512c7726eb4de9617f1309
3
+ metadata.gz: c361194e0a6ff4131717027f1c8f2bede7975e06
4
+ data.tar.gz: bee82701ad1c78149d4c98ba22d938b172b97114
5
5
  SHA512:
6
- metadata.gz: f42b52fbd29e5bbb4126f91793e407759a1eaa0463e94f9e8e527273203dcb0b8a86ff5b6de1ea1c794399874de65202de45f98323aaf33f035b134aa0dcc1c2
7
- data.tar.gz: a9aa49c934fc7179de43431e9d1308f4f887a2b88b4ca0a28c16abcfa7cfcf3d63edaf1a2a6f6b0aa27a2a0052adcae528c1059dd8f585826bf83bebad90ba20
6
+ metadata.gz: ca40622ec31d8b38b2f69e65e0f95a8140bf57f65820afbb17a3107ef70477c350858c4988b1f9240a5e2df881c8dbff1765b5510f7e1bbdcaaef1a36b4d66ad
7
+ data.tar.gz: f185ec13de879224f71dcaf7920e80d97f5551bdd504f28ccdf803b37407ad1ed6f01b395babf733ceef9166eb2f0d369f1814f0ceefed8e670d0c5ec22e4586
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- houston-core (0.6.1)
4
+ houston-core (0.6.2)
5
5
  activerecord-import
6
6
  activerecord-pluck_in_batches
7
7
  addressable
@@ -126,7 +126,7 @@ GEM
126
126
  addressable
127
127
  default_value_for (3.0.1)
128
128
  activerecord (>= 3.2.0, < 5.0)
129
- devise (3.5.5)
129
+ devise (3.5.6)
130
130
  bcrypt (~> 3.0)
131
131
  orm_adapter (~> 0.1)
132
132
  railties (>= 3.2.6, < 5)
@@ -233,7 +233,7 @@ GEM
233
233
  rack (>= 1.2, < 3)
234
234
  octokit (4.1.1)
235
235
  sawyer (~> 0.6.0, >= 0.5.3)
236
- oj (2.14.3)
236
+ oj (2.14.4)
237
237
  openxml-package (0.2.2)
238
238
  nokogiri
239
239
  ox
@@ -242,7 +242,7 @@ GEM
242
242
  nokogiri
243
243
  openxml-package (>= 0.2.0)
244
244
  orm_adapter (0.5.0)
245
- ox (2.2.3)
245
+ ox (2.2.4)
246
246
  pg (0.18.4)
247
247
  pg_search (1.0.5)
248
248
  activerecord (>= 3.1)
@@ -347,7 +347,7 @@ GEM
347
347
  json (>= 1.8.0)
348
348
  unf (0.1.4)
349
349
  unf_ext
350
- unf_ext (0.0.7.1)
350
+ unf_ext (0.0.7.2)
351
351
  warden (1.2.6)
352
352
  rack (>= 1.0)
353
353
  webmock (1.22.6)
@@ -82,14 +82,22 @@ class Project < ActiveRecord::Base
82
82
  find_by_slug(slug)
83
83
  end
84
84
 
85
+ def self.with_feature(feature)
86
+ where ["? = ANY(projects.selected_features)", feature]
87
+ end
88
+
85
89
  def features
86
- (selected_features & Houston.config.project_features) + [:settings]
90
+ (Houston.config.project_features & selected_features) + [:settings]
87
91
  end
88
92
 
89
93
  def selected_features
90
94
  Array(super).map(&:to_sym)
91
95
  end
92
96
 
97
+ def feature?(feature_slug)
98
+ selected_features.member? feature_slug.to_sym
99
+ end
100
+
93
101
 
94
102
 
95
103
 
@@ -22,7 +22,7 @@
22
22
  <li class="divider-vertical"></li>
23
23
 
24
24
  <% if can?(:read, Project) -%>
25
- <%= render_nav_link "Projects", main_app.projects_path, icon: "fa-database" %>
25
+ <%= render_nav_link "Projects", main_app.projects_path, icon: "fa-archive" %>
26
26
  <% end -%>
27
27
 
28
28
  <% if can?(:read, User) -%>
@@ -30,7 +30,7 @@
30
30
  <% end -%>
31
31
 
32
32
  <% if can?(:read, :job) -%>
33
- <%= render_nav_link "Jobs", main_app.jobs_path, icon: "fa-user" %>
33
+ <%= render_nav_link "Jobs", main_app.jobs_path, icon: "fa-gear" %>
34
34
  <% end -%>
35
35
 
36
36
  </ul>
@@ -22,7 +22,8 @@
22
22
  <%= stylesheet_link_tag :vendor, media: "all" %>
23
23
  <%= stylesheet_link_tag :application, media: "all" %>
24
24
  <%= stylesheet_link_tag :print, media: "print" %>
25
- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
25
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
26
+
26
27
  <%= yield :stylesheets %><%# so that Engines can hook in and add styles %>
27
28
 
28
29
  <!-- Le fav and touch icons -->
@@ -17,7 +17,7 @@
17
17
  <!-- Le styles -->
18
18
  <%= stylesheet_link_tag :vendor, media: "all" %>
19
19
  <%= stylesheet_link_tag :dashboard, media: "all" %>
20
- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
20
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
21
21
  <%= yield :stylesheets %><%# so that Engines can hook in and add styles %>
22
22
 
23
23
  <!-- Le fav and touch icons -->
@@ -19,7 +19,7 @@
19
19
  <%= stylesheet_link_tag :vendor, media: "all" %>
20
20
  <%= stylesheet_link_tag :application, media: "all" %>
21
21
  <%= stylesheet_link_tag :print, media: "print" %>
22
- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
22
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
23
23
  <%= yield :stylesheets %><%# so that Engines can hook in and add styles %>
24
24
 
25
25
  <!-- Le fav and touch icons -->
@@ -14,7 +14,7 @@
14
14
  <![endif]-->
15
15
 
16
16
  <!-- Le styles -->
17
- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
17
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
18
18
  <%= stylesheet_link_tag :vendor, media: "all" %>
19
19
  <%= stylesheet_link_tag :dashboard, media: "all" %>
20
20
  <%= yield :stylesheets %><%# so that Engines can hook in and add styles %>
@@ -72,7 +72,7 @@
72
72
  <% Houston.config.project_features.each do |feature_slug| %>
73
73
  <% feature = Houston.config.get_project_feature(feature_slug) %>
74
74
  <label for="selected_features_<%= feature_slug %>">
75
- <%= check_box_tag "project[selected_features][]", feature_slug, @project.selected_features.member?(feature_slug), id: "selected_features_#{feature_slug}", class: "project-feature" %>
75
+ <%= check_box_tag "project[selected_features][]", feature_slug, @project.feature?(feature_slug), id: "selected_features_#{feature_slug}", class: "project-feature" %>
76
76
  <%= feature.name %>
77
77
  </label>
78
78
 
@@ -6,7 +6,7 @@ end
6
6
 
7
7
  Houston.config.add_navigation_renderer :pulls do
8
8
  if can?(:read, Github::PullRequest)
9
- render_nav_link "Pulls", main_app.pulls_path
9
+ render_nav_link "Pulls", main_app.pulls_path, icon: "octokit-pull-request"
10
10
  end
11
11
  end
12
12
 
@@ -1,3 +1,3 @@
1
1
  module Houston
2
- VERSION = "0.6.1"
2
+ VERSION = "0.6.2"
3
3
  end
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="28" viewBox="0 0 28 28">
5
+ <path d="M17 13q0-0.406-0.297-0.703t-0.703-0.297h-4q-0.406 0-0.703 0.297t-0.297 0.703 0.297 0.703 0.703 0.297h4q0.406 0 0.703-0.297t0.297-0.703zM26 10v15q0 0.406-0.297 0.703t-0.703 0.297h-22q-0.406 0-0.703-0.297t-0.297-0.703v-15q0-0.406 0.297-0.703t0.703-0.297h22q0.406 0 0.703 0.297t0.297 0.703zM27 3v4q0 0.406-0.297 0.703t-0.703 0.297h-24q-0.406 0-0.703-0.297t-0.297-0.703v-4q0-0.406 0.297-0.703t0.703-0.297h24q0.406 0 0.703 0.297t0.297 0.703z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="26" height="28" viewBox="0 0 26 28">
5
+ <path d="M23.156 16.406q0.719 0.406 0.93 1.211t-0.195 1.523l-1 1.719q-0.406 0.719-1.211 0.93t-1.523-0.195l-4.156-2.391v4.797q0 0.812-0.594 1.406t-1.406 0.594h-2q-0.812 0-1.406-0.594t-0.594-1.406v-4.797l-4.156 2.391q-0.719 0.406-1.523 0.195t-1.211-0.93l-1-1.719q-0.406-0.719-0.195-1.523t0.93-1.211l4.156-2.406-4.156-2.406q-0.719-0.406-0.93-1.211t0.195-1.523l1-1.719q0.406-0.719 1.211-0.93t1.523 0.195l4.156 2.391v-4.797q0-0.812 0.594-1.406t1.406-0.594h2q0.812 0 1.406 0.594t0.594 1.406v4.797l4.156-2.391q0.719-0.406 1.523-0.195t1.211 0.93l1 1.719q0.406 0.719 0.195 1.523t-0.93 1.211l-4.156 2.406z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="28" viewBox="0 0 20 28">
5
+ <path d="M18.188 2q0.359 0 0.688 0.141 0.516 0.203 0.82 0.641t0.305 0.969v20.141q0 0.531-0.305 0.969t-0.82 0.641q-0.297 0.125-0.688 0.125-0.75 0-1.297-0.5l-6.891-6.625-6.891 6.625q-0.562 0.516-1.297 0.516-0.359 0-0.688-0.141-0.516-0.203-0.82-0.641t-0.305-0.969v-20.141q0-0.531 0.305-0.969t0.82-0.641q0.328-0.141 0.688-0.141h16.375z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="28" viewBox="0 0 24 28">
5
+ <path d="M21.5 14l2.156 2.109q0.469 0.438 0.313 1.094-0.187 0.641-0.812 0.797l-2.938 0.75 0.828 2.906q0.187 0.641-0.297 1.094-0.453 0.484-1.094 0.297l-2.906-0.828-0.75 2.938q-0.156 0.625-0.797 0.812-0.187 0.031-0.297 0.031-0.484 0-0.797-0.344l-2.109-2.156-2.109 2.156q-0.438 0.469-1.094 0.313-0.641-0.172-0.797-0.812l-0.75-2.938-2.906 0.828q-0.641 0.187-1.094-0.297-0.484-0.453-0.297-1.094l0.828-2.906-2.938-0.75q-0.625-0.156-0.812-0.797-0.156-0.656 0.313-1.094l2.156-2.109-2.156-2.109q-0.469-0.438-0.313-1.094 0.187-0.641 0.812-0.797l2.938-0.75-0.828-2.906q-0.187-0.641 0.297-1.094 0.453-0.484 1.094-0.297l2.906 0.828 0.75-2.938q0.156-0.641 0.797-0.797 0.641-0.187 1.094 0.297l2.109 2.172 2.109-2.172q0.453-0.469 1.094-0.297 0.641 0.156 0.797 0.797l0.75 2.938 2.906-0.828q0.641-0.187 1.094 0.297 0.484 0.453 0.297 1.094l-0.828 2.906 2.938 0.75q0.625 0.156 0.812 0.797 0.156 0.656-0.313 1.094z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="28" viewBox="0 0 24 28">
5
+ <path d="M16 8v-7.375q0.344 0.219 0.562 0.438l6.375 6.375q0.219 0.219 0.438 0.562h-7.375zM14 8.5q0 0.625 0.438 1.062t1.062 0.438h8.5v16.5q0 0.625-0.438 1.062t-1.062 0.438h-21q-0.625 0-1.062-0.438t-0.438-1.062v-25q0-0.625 0.438-1.062t1.062-0.438h12.5v8.5z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="29" height="28" viewBox="0 0 29 28">
5
+ <path d="M5 4q0 1.125-1 1.719v19.781q0 0.203-0.148 0.352t-0.352 0.148h-1q-0.203 0-0.352-0.148t-0.148-0.352v-19.781q-1-0.594-1-1.719 0-0.828 0.586-1.414t1.414-0.586 1.414 0.586 0.586 1.414zM28 5v11.922q0 0.391-0.195 0.602t-0.617 0.43q-3.359 1.813-5.766 1.813-0.953 0-1.93-0.344t-1.695-0.75-1.805-0.75-2.227-0.344q-3 0-7.25 2.281-0.266 0.141-0.516 0.141-0.406 0-0.703-0.297t-0.297-0.703v-11.594q0-0.5 0.484-0.859 0.328-0.219 1.234-0.672 3.687-1.875 6.578-1.875 1.672 0 3.125 0.453t3.422 1.375q0.594 0.297 1.375 0.297 0.844 0 1.836-0.328t1.719-0.734 1.375-0.734 0.852-0.328q0.406 0 0.703 0.297t0.297 0.703z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="26" height="28" viewBox="0 0 26 28">
5
+ <path d="M22 15.5v7.5q0 0.406-0.297 0.703t-0.703 0.297h-6v-6h-4v6h-6q-0.406 0-0.703-0.297t-0.297-0.703v-7.5q0-0.016 0.008-0.047t0.008-0.047l8.984-7.406 8.984 7.406q0.016 0.031 0.016 0.094zM25.484 14.422l-0.969 1.156q-0.125 0.141-0.328 0.172h-0.047q-0.203 0-0.328-0.109l-10.813-9.016-10.813 9.016q-0.187 0.125-0.375 0.109-0.203-0.031-0.328-0.172l-0.969-1.156q-0.125-0.156-0.109-0.367t0.172-0.336l11.234-9.359q0.5-0.406 1.188-0.406t1.188 0.406l3.813 3.187v-3.047q0-0.219 0.141-0.359t0.359-0.141h3q0.219 0 0.359 0.141t0.141 0.359v6.375l3.422 2.844q0.156 0.125 0.172 0.336t-0.109 0.367z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="28" viewBox="0 0 28 28">
5
+ <path d="M27.266 4.641q0.156 0.156 0.156 0.359t-0.156 0.359l-2.203 2.203q-0.438 0.438-1.062 0.438h-21q-0.406 0-0.703-0.297t-0.297-0.703v-4q0-0.406 0.297-0.703t0.703-0.297h9v-1q0-0.406 0.297-0.703t0.703-0.297h2q0.406 0 0.703 0.297t0.297 0.703v1h8q0.625 0 1.062 0.438zM12 19h4v8q0 0.406-0.297 0.703t-0.703 0.297h-2q-0.406 0-0.703-0.297t-0.297-0.703v-8zM25 12q0.406 0 0.703 0.297t0.297 0.703v4q0 0.406-0.297 0.703t-0.703 0.297h-21q-0.625 0-1.062-0.438l-2.203-2.203q-0.156-0.156-0.156-0.359t0.156-0.359l2.203-2.203q0.438-0.438 1.062-0.438h8v-3h4v3h9z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="28" viewBox="0 0 28 28">
5
+ <path d="M8 0q0.203 0 0.352 0.148t0.148 0.352v23q0 0.313-0.266 0.438l-7.5 4q-0.109 0.063-0.234 0.063-0.203 0-0.352-0.148t-0.148-0.352v-23q0-0.313 0.266-0.438l7.5-4q0.109-0.063 0.234-0.063zM27.5 0q0.203 0 0.352 0.148t0.148 0.352v23q0 0.313-0.266 0.438l-7.5 4q-0.109 0.063-0.234 0.063-0.203 0-0.352-0.148t-0.148-0.352v-23q0-0.313 0.266-0.438l7.5-4q0.109-0.063 0.234-0.063zM10 0q0.125 0 0.219 0.047l8 4q0.281 0.156 0.281 0.453v23q0 0.203-0.148 0.352t-0.352 0.148q-0.125 0-0.219-0.047l-8-4q-0.281-0.156-0.281-0.453v-23q0-0.203 0.148-0.352t0.352-0.148z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="26" height="28" viewBox="0 0 26 28">
5
+ <path d="M26 10.109q0 0.344-0.406 0.75l-5.672 5.531 1.344 7.812q0.016 0.109 0.016 0.313 0 0.328-0.164 0.555t-0.477 0.227q-0.297 0-0.625-0.187l-7.016-3.687-7.016 3.687q-0.344 0.187-0.625 0.187-0.328 0-0.492-0.227t-0.164-0.555q0-0.094 0.031-0.313l1.344-7.812-5.688-5.531q-0.391-0.422-0.391-0.75 0-0.578 0.875-0.719l7.844-1.141 3.516-7.109q0.297-0.641 0.766-0.641t0.766 0.641l3.516 7.109 7.844 1.141q0.875 0.141 0.875 0.719z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="28" viewBox="0 0 28 28">
5
+ <path d="M10 6h8v-2h-8v2zM4.5 6v20h-1q-1.437 0-2.469-1.031t-1.031-2.469v-13q0-1.437 1.031-2.469t2.469-1.031h1zM22 6v20h-16v-20h2v-2.5q0-0.625 0.438-1.062t1.062-0.438h9q0.625 0 1.062 0.438t0.438 1.062v2.5h2zM28 9.5v13q0 1.437-1.031 2.469t-2.469 1.031h-1v-20h1q1.437 0 2.469 1.031t1.031 2.469z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="32" viewBox="0 0 24 32">
5
+ <path d="M22 22.563s0-9.563 0-12.563-3-6-6-6c-2 0-2 0-2 0v-4l-6 6 6 6v-4s1 0 2 0 2 1 2 2 0 12.563 0 12.563c-1.188 0.688-2 1.969-2 3.438 0 2.219 1.781 4 4 4s4-1.781 4-4c0-1.469-0.813-2.75-2-3.438zM20 28c-1.094 0-2-0.906-2-2s0.906-2 2-2 2 0.906 2 2-0.906 2-2 2zM4 2c-2.219 0-4 1.781-4 4 0 1.469 0.813 2.75 2 3.438v13.094c-1.188 0.688-2 1.969-2 3.438 0 2.219 1.781 4 4 4s4-1.781 4-4c0-1.469-0.813-2.75-2-3.438v-13.094c1.188-0.688 2-1.969 2-3.438 0-2.219-1.781-4-4-4zM4 28c-1.094 0-2-0.906-2-2s0.906-2 2-2 2 0.906 2 2-0.906 2-2 2zM4 8c-1.094 0-2-0.906-2-2s0.906-2 2-2 2 0.906 2 2-0.906 2-2 2z"></path>
6
+ </svg>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: houston-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Lail
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-06 00:00:00.000000000 Z
11
+ date: 2016-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -3424,22 +3424,34 @@ files:
3424
3424
  - vendor/assets/stylesheets/jquery-ui-1.10.1/jquery.ui.theme.css
3425
3425
  - vendor/assets/stylesheets/jquery-ui-1.10.1/jquery.ui.tooltip.css
3426
3426
  - vendor/assets/stylesheets/jquery-ui.css
3427
+ - vendor/images/fa-archive.svg
3428
+ - vendor/images/fa-asterisk.svg
3427
3429
  - vendor/images/fa-bank.svg
3428
3430
  - vendor/images/fa-bell.svg
3429
3431
  - vendor/images/fa-bomb.svg
3432
+ - vendor/images/fa-bookmark.svg
3430
3433
  - vendor/images/fa-bug.svg
3431
3434
  - vendor/images/fa-bullhorn.svg
3432
3435
  - vendor/images/fa-burndown.svg
3433
3436
  - vendor/images/fa-calendar-o.svg
3437
+ - vendor/images/fa-certificate.svg
3434
3438
  - vendor/images/fa-comment.svg
3435
3439
  - vendor/images/fa-comments.svg
3436
3440
  - vendor/images/fa-database.svg
3441
+ - vendor/images/fa-file.svg
3437
3442
  - vendor/images/fa-fire-extinguisher.svg
3443
+ - vendor/images/fa-flag.svg
3438
3444
  - vendor/images/fa-gear.svg
3445
+ - vendor/images/fa-home.svg
3439
3446
  - vendor/images/fa-lightbulb-o.svg
3447
+ - vendor/images/fa-map-signs.svg
3448
+ - vendor/images/fa-map.svg
3440
3449
  - vendor/images/fa-paper-plane.svg
3441
3450
  - vendor/images/fa-road.svg
3451
+ - vendor/images/fa-star.svg
3452
+ - vendor/images/fa-suitcase.svg
3442
3453
  - vendor/images/fa-user.svg
3454
+ - vendor/images/octokit-pull-request.svg
3443
3455
  homepage: https://github.com/houston/houston
3444
3456
  licenses: []
3445
3457
  metadata: {}