overlord 0.1.3 → 0.1.4

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.
data/Rakefile CHANGED
@@ -68,6 +68,4 @@ desc 'Translate this gem'
68
68
  task :translate do
69
69
  file = File.join(File.dirname(__FILE__), 'locales', 'en.yml')
70
70
  system("babelphish -o -y #{file}")
71
- path = File.join(File.dirname(__FILE__), 'app', 'views', 'raker_mailer')
72
- system("babelphish -o -h #{path} -l en")
73
71
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
@@ -17,6 +17,6 @@ google.setOnLoadCallback(function() {
17
17
  });
18
18
  <% end -%>
19
19
  <div id="<%= content_id %>">
20
- <%= t('muck.raker.loading_message') %>
21
- <img src="/images/spinner.gif" alt="<%= t('muck.raker.loading_image') %>" />
20
+ <%= t('overlord.loading_message') %>
21
+ <img src="/images/spinner.gif" alt="<%= t('overlord.loading_image') %>" />
22
22
  </div>
@@ -25,7 +25,7 @@
25
25
  <%= link_to "(rss)", feed.uri, :target => 'blank' %>
26
26
  <% if defined?(show_controls) && show_controls -%>
27
27
  <span class="remove-feed feed-control">
28
- <%= link_to t('muck.raker.remove'), aggregation_feed_path(0, :aggregation_id => @aggregation.id, :feed_id => feed.id), :class => 'delete-link' %>
28
+ <%= link_to t('overlord.remove'), aggregation_feed_path(0, :aggregation_id => @aggregation.id, :feed_id => feed.id), :class => 'delete-link' %>
29
29
  </span>
30
30
  <% if use_uri_for_control -%>
31
31
  <%= hidden_field_tag "uris[]", feed.uri -%>
@@ -37,7 +37,7 @@
37
37
  </div>
38
38
  <div class="feed-content">
39
39
  <div id="<%= content_id %>" class="feed-item <%= feed_class(feed) %>">
40
- <span class="waiting"><%= t('muck.raker.loading_message') %></span>
40
+ <span class="waiting"><%= t('overlord.loading_message') %></span>
41
41
  </div>
42
42
  </div>
43
43
  </div>
@@ -21,6 +21,6 @@ function findDone(result) {
21
21
  }
22
22
  <% end -%>
23
23
  <div id="<%= content_id %>">
24
- <%= t('muck.raker.loading_message') %>
24
+ <%= t('overlord.loading_message') %>
25
25
  <img src="/images/spinner.gif" alt="Loading content image" />
26
26
  </div>
@@ -32,7 +32,7 @@ google.setOnLoadCallback(google_load_search);
32
32
  </div>
33
33
  <div class="feed-content">
34
34
  <div id="<%= content_id %>" class="search-container">
35
- <span class="waiting"><%= t('muck.raker.loading_message') %></span>
35
+ <span class="waiting"><%= t('overlord.loading_message') %></span>
36
36
  </div>
37
37
  </div>
38
38
  </div>
@@ -9,6 +9,6 @@ google.setOnLoadCallback(function() {
9
9
  });
10
10
  <% end -%>
11
11
  <div id="<%= content_id %>" class="slide_show_content">
12
- <%= t('muck.raker.loading_message') %>
13
- <img src="/images/spinner.gif" alt="<%= t('muck.raker.loading_image') %>" />
12
+ <%= t('overlord.loading_message') %>
13
+ <img src="/images/spinner.gif" alt="<%= t('overlord.loading_image') %>" />
14
14
  </div>
@@ -1,3 +1,4 @@
1
1
  require 'httparty'
2
2
  require 'overlord/google_feed_request'
3
3
 
4
+ I18n.load_path += Dir[ File.join(File.dirname(__FILE__), '..', 'locales', '*.{rb,yml}') ]
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{overlord}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball", "Joel Duffin"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: overlord
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball