under_construction 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -41,6 +41,7 @@ on the theme using, not all options may be used:
41
41
 
42
42
  theme: 'site-under-construction'
43
43
  launch_time: "24 Feb 2050 7:00pm"
44
+ time_zone: "UTC" # Used in scheduler. For opetions, see http://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html
44
45
  progress: "60" # Percent
45
46
  progress_label: "Progress"
46
47
  website_address: "http://example.com"
@@ -109,6 +110,7 @@ In stylesheet, you have to include under_construction/*theme* like below:
109
110
  In javascript, you have to include under_construction/*theme* like below:
110
111
 
111
112
  //= require under_construction/site-under-construction
113
+ //= require jquery_ujs
112
114
 
113
115
  Note: If you want your under construction works on production mode you must adds
114
116
  under_construction.js and under_construction.css in your production env in
@@ -5,12 +5,18 @@ class UnderConstructionEmailStorageController < ApplicationController
5
5
  respond_to do |format|
6
6
  if @email.valid?
7
7
  @email.save_to_file
8
+ @notice = I18n.t('controllers.under_construction_email_storage.create.flash.success', default: "Your email added successfully")
8
9
  format.html { redirect_to under_construction_index_path,
9
10
  notice: I18n.t('controllers.under_construction_email_storage.create.flash.success',
10
11
  default: "Your email added successfully"
11
12
  )}
13
+ # TODO: UnderConstruction.config won't update if config file changes
14
+ format.js { render template: "under_construction/#{UnderConstruction.config.theme}/create" }
12
15
  else
16
+ @alert = @email.errors.full_messages[0]
17
+ # TODO: UnderConstruction.config won't update if config file changes
13
18
  format.html { redirect_to under_construction_index_path, alert: @email.errors.full_messages }
19
+ format.js { render template: "under_construction/#{UnderConstruction.config.theme}/create" }
14
20
  end
15
21
  end
16
22
  end
@@ -1,4 +1,4 @@
1
- <%= form_for @email, url: under_construction_email_storage_index_path, html: { id: 'subscribeform' } do |f| %>
1
+ <%= form_for @email, url: under_construction_email_storage_index_path, html: { id: 'subscribeform' }, :remote => true do |f| %>
2
2
  <div id='email_input'>
3
3
  <%= f.text_field :email, id: 'email', placeholder: @info['email_field_value'], size: 30 %>
4
4
  <%= f.submit t('.submit', default: "SUBMIT"), id: 'submit' %>
@@ -7,7 +7,7 @@ module UnderConstruction
7
7
 
8
8
  # Will redirect all requests to under construction page
9
9
  def redirect_to_under_construction
10
- if request.host_with_port == UnderConstruction.config.host_name && Rails.env.production?
10
+ if request.host_with_port == UnderConstruction.config.host_name
11
11
  unless request.url =~ /(under_construction|email_storage)/
12
12
  redirect_to under_construction_index_path
13
13
  end
@@ -0,0 +1,14 @@
1
+ <%
2
+ def define_class
3
+ @notice ? 'notice' : 'alert'
4
+ end
5
+ %>
6
+ // Add the Notice or Error
7
+ $('.flash').addClass("<%= define_class %>").html("<%= j raw @notice ? @notice : @alert %><br><br><a class='back' href='#'>Back</a>");
8
+ // Make the Back Url to work
9
+ $('a.back').on('click', function(e) {
10
+ e.preventDefault();
11
+ show_alert.show()
12
+ });
13
+ // show_alert is defined in index.html
14
+ show_alert.show();
@@ -4,7 +4,7 @@
4
4
  "HTML Tidy for Linux/x86 (vers 25 March 2009), see www.w3.org" />
5
5
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
6
 
7
- <meta http-equiv="refresh" content="60">
7
+ <!-- <meta http-equiv="refresh" content="60"> -->
8
8
 
9
9
  <title><%= @info['site_title'] %></title>
10
10
 
@@ -34,6 +34,21 @@
34
34
  DD_belatedPNG.fix('#logo img,#main,.counter,.twitter,.flickr,.facebook,.youtube,.skype,.stumbleupon, #submit,.prev img,.next img,#email');
35
35
  </script>
36
36
  <![endif]-->
37
+ <script type="text/javascript">
38
+ var show_alert = {
39
+ show: function() {
40
+ if ($('div.subcontainer').css('margin-top') == '0px') {
41
+ $('div.subcontainer').animate({
42
+ 'margin-top': '-100px',
43
+ });
44
+ } else {
45
+ $('div.subcontainer').animate({
46
+ 'margin-top': '0px',
47
+ });
48
+ };
49
+ },
50
+ };
51
+ </script>
37
52
  </head>
38
53
 
39
54
  <body>
@@ -78,8 +93,19 @@
78
93
 
79
94
  <ul>
80
95
  <li>
81
- <h3><%= @info['inform_by_email'] %></h3>
82
- <%= render partial: 'email_storage/form', object: @email %>
96
+ <div class='subcontainer'>
97
+ <div class='formcontainer'>
98
+ <h3><%= @info['inform_by_email'] %></h3>
99
+ <%= render partial: 'email_storage/form', object: @email %>
100
+ </div>
101
+
102
+ <div class='noticecontainer'>
103
+ <p class='flash'>
104
+ There will be Errors to show. Always :/
105
+ </p>
106
+ </div>
107
+
108
+ </div>
83
109
  </li><!-- Slider item -->
84
110
 
85
111
  <li>
@@ -0,0 +1,14 @@
1
+ <%
2
+ def define_class
3
+ @notice ? 'notice' : 'alert'
4
+ end
5
+ %>
6
+ // Add the Notice or Error
7
+ $('.flash').addClass("<%= define_class %>").html("<%= j raw @notice ? @notice : @alert %><br><br><a class='back' href='#'>Back</a>");
8
+ // Make the Back Url to work
9
+ $('a.back').on('click', function(e) {
10
+ e.preventDefault();
11
+ show_alert.show()
12
+ });
13
+ // show_alert is defined in index.html
14
+ show_alert.show();
@@ -33,6 +33,21 @@
33
33
  DD_belatedPNG.fix('#logo img,#main,.counter,.twitter,.flickr,.facebook,.youtube,.skype,.stumbleupon, #submit,.prev img,.next img,#email');
34
34
  </script>
35
35
  <![endif]-->
36
+ <script type="text/javascript">
37
+ var show_alert = {
38
+ show: function() {
39
+ if ($('div.subcontainer').css('margin-top') == '0px') {
40
+ $('div.subcontainer').animate({
41
+ 'margin-top': '-100px',
42
+ });
43
+ } else {
44
+ $('div.subcontainer').animate({
45
+ 'margin-top': '0px',
46
+ });
47
+ };
48
+ },
49
+ };
50
+ </script>
36
51
  </head>
37
52
 
38
53
  <body dir="rtl">
@@ -77,8 +92,19 @@
77
92
 
78
93
  <ul>
79
94
  <li>
80
- <h3><%= @info['inform_by_email'] %></h3>
81
- <%= render partial: 'email_storage/form', object: @email %>
95
+ <div class='subcontainer'>
96
+ <div class='formcontainer'>
97
+ <h3><%= @info['inform_by_email'] %></h3>
98
+ <%= render partial: 'email_storage/form', object: @email %>
99
+ </div>
100
+
101
+ <div class='noticecontainer'>
102
+ <p class='flash'>
103
+ There will be Errors to show. Always :/
104
+ </p>
105
+ </div>
106
+
107
+ </div>
82
108
  </li><!-- Slider item -->
83
109
 
84
110
  <li>
@@ -1,5 +1,6 @@
1
1
  theme: 'site-under-construction'
2
2
  launch_time: "24 Feb 2050 7:00pm"
3
+ time_zone: "UTC" # Used in scheduler. For opetions, see http://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html
3
4
  progress: "60" # Percent
4
5
  progress_label: "Progress"
5
6
  website_address: "http://example.com"
@@ -24,6 +24,7 @@ module UnderConstruction
24
24
 
25
25
  config_accessor :theme
26
26
  config_accessor :launch_time
27
+ config_accessor :time_zone
27
28
  config_accessor :host_name
28
29
  config_accessor :progress
29
30
  config_accessor :progress_label
@@ -5,6 +5,8 @@ module UnderConstruction
5
5
  def initialize(*args)
6
6
  @scheduler = Rufus::Scheduler.start_new
7
7
  @end_time = args[0]
8
+ Time.zone = UnderConstruction.config.time_zone || "UTC"
9
+ Chronic.time_class = Time.zone
8
10
  schedule()
9
11
  end
10
12
 
@@ -1,3 +1,3 @@
1
1
  module UnderConstruction
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -9,7 +9,6 @@
9
9
  font-style: normal;
10
10
  }
11
11
 
12
-
13
12
  /* === General Styles === */
14
13
 
15
14
  html,
@@ -70,33 +69,6 @@ body { background: #aaaaaa url(/assets/under_construction/site-under-construc
70
69
  height: 430px;
71
70
  }
72
71
 
73
- /* === Flashes === */
74
- .flash {
75
- text-align: center;
76
- position: relative;
77
- margin: 0 auto;
78
- top: 20px;
79
- width: 300px;
80
- padding: 10px;
81
- -webkit-border-radius: 5px;
82
- -moz-border-radius: 5px;
83
- -ms-border-radius: 5px;
84
- -o-border-radius: 5px;
85
- border-radius: 5px;
86
- }
87
-
88
- .notice {
89
- background-color: #DFF0D8;
90
- border: 1px solid #D6E9C6;
91
- color: #468847;
92
- }
93
-
94
- .alert {
95
- background-color: #F2DEDE;
96
- border: 1px solid #EED3D7;
97
- color: #B94A48;
98
- }
99
-
100
72
  /* === Header Styles === */
101
73
 
102
74
  #header {
@@ -275,6 +247,23 @@ a.next {
275
247
  margin-left: 135px;
276
248
  }
277
249
 
250
+ .subcontainer {
251
+ overflow: hidden;
252
+ margin-top: 0;
253
+ }
254
+
255
+ .noticecontainer {
256
+ width: 600px;
257
+ height: 100px;
258
+ margin: 0 auto;
259
+ }
260
+
261
+ .formcontainer {
262
+ width: inherit;
263
+ height: 100px;
264
+ position: relative;
265
+ }
266
+
278
267
  input#email {
279
268
  background: url(/assets/under_construction/site-under-construction/mail-bg.png) no-repeat scroll 0 0;
280
269
  width: 217px;
@@ -323,3 +312,32 @@ input#submit {
323
312
  font-size: 26px;
324
313
  font-weight: normal;
325
314
  }
315
+
316
+ /* === Flashes === */
317
+ .flash {
318
+ vertical-align: center;
319
+ height: 70px;
320
+ text-align: center;
321
+ position: relative;
322
+ margin: 0 auto;
323
+ width: 300px;
324
+ padding: 10px !important;
325
+ -webkit-border-radius: 5px;
326
+ -moz-border-radius: 5px;
327
+ -ms-border-radius: 5px;
328
+ -o-border-radius: 5px;
329
+ border-radius: 5px;
330
+ font-size: inherit !important;
331
+ }
332
+
333
+ .notice {
334
+ background-color: #DFF0D8;
335
+ border: 1px solid #D6E9C6;
336
+ color: #468847 !important;
337
+ }
338
+
339
+ .alert {
340
+ background-color: #F2DEDE;
341
+ border: 1px solid #EED3D7;
342
+ color: #B94A48 !important;
343
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: under_construction
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-02-07 00:00:00.000000000 Z
13
+ date: 2013-04-06 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -183,114 +183,116 @@ extensions: []
183
183
  extra_rdoc_files: []
184
184
  files:
185
185
  - app/models/under_construction_email_storage.rb
186
- - app/views/email_storage/_form.html.erb
187
- - app/views/notify_under_construction_submitted_mails/under_construction_notify.text.erb
188
186
  - app/controllers/under_construction_controller.rb
189
187
  - app/controllers/under_construction_email_storage_controller.rb
190
- - app/helpers/email_storage_helper.rb
191
188
  - app/mailers/notify_under_construction_submitted_mails.rb
192
- - lib/under_construction/version.rb
193
- - lib/under_construction/config.rb
194
- - lib/under_construction/engine.rb
195
- - lib/under_construction/schedule.rb
189
+ - app/helpers/email_storage_helper.rb
190
+ - app/views/notify_under_construction_submitted_mails/under_construction_notify.text.erb
191
+ - app/views/email_storage/_form.html.erb
192
+ - lib/tasks/under_cunstruction_tasks.rake
196
193
  - lib/under_construction.rb
197
- - lib/generators/under_construction/USAGE
198
- - lib/generators/under_construction/templates/under_construction/site-under-construction-fa/index.html.erb
199
- - lib/generators/under_construction/templates/under_construction/site-under-construction/index.html.erb
194
+ - lib/generators/under_construction/config_generator.rb
200
195
  - lib/generators/under_construction/templates/under_construction.yml
201
196
  - lib/generators/under_construction/templates/under_construction_scheduler.rb
197
+ - lib/generators/under_construction/templates/under_construction/site-under-construction/index.html.erb
198
+ - lib/generators/under_construction/templates/under_construction/site-under-construction/create.js.erb
199
+ - lib/generators/under_construction/templates/under_construction/site-under-construction-fa/index.html.erb
200
+ - lib/generators/under_construction/templates/under_construction/site-under-construction-fa/create.js.erb
201
+ - lib/generators/under_construction/USAGE
202
202
  - lib/generators/under_construction/clear_generator.rb
203
203
  - lib/generators/under_construction/constants.rb
204
- - lib/generators/under_construction/config_generator.rb
205
- - lib/tasks/under_cunstruction_tasks.rake
206
- - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.ttf
207
- - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.eot
208
- - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.woff
209
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.svg
210
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.eot
211
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.woff
212
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.svg
213
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.eot
214
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.eot
215
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.eot
216
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.eot
217
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.ttf
204
+ - lib/under_construction/engine.rb
205
+ - lib/under_construction/version.rb
206
+ - lib/under_construction/schedule.rb
207
+ - lib/under_construction/config.rb
208
+ - vendor/assets/images/under_construction/site-under-construction/flickr.png
209
+ - vendor/assets/images/under_construction/site-under-construction/prev.png
210
+ - vendor/assets/images/under_construction/site-under-construction/google.png
211
+ - vendor/assets/images/under_construction/site-under-construction/youtube.png
212
+ - vendor/assets/images/under_construction/site-under-construction/linkedin.png
213
+ - vendor/assets/images/under_construction/site-under-construction/next.png
214
+ - vendor/assets/images/under_construction/site-under-construction/stumbleupon.png
215
+ - vendor/assets/images/under_construction/site-under-construction/deviantart.png
216
+ - vendor/assets/images/under_construction/site-under-construction/bg.jpg
217
+ - vendor/assets/images/under_construction/site-under-construction/skype.png
218
+ - vendor/assets/images/under_construction/site-under-construction/mail-bg.png
219
+ - vendor/assets/images/under_construction/site-under-construction/facebook.png
220
+ - vendor/assets/images/under_construction/site-under-construction/logo.png
221
+ - vendor/assets/images/under_construction/site-under-construction/counter_bg.png
222
+ - vendor/assets/images/under_construction/site-under-construction/button.png
223
+ - vendor/assets/images/under_construction/site-under-construction/page_background.png
224
+ - vendor/assets/images/under_construction/site-under-construction/identica.png
225
+ - vendor/assets/images/under_construction/site-under-construction/twitter.png
226
+ - vendor/assets/images/under_construction/site-under-construction/yahoo.png
227
+ - vendor/assets/images/under_construction/site-under-construction-fa/flickr.png
228
+ - vendor/assets/images/under_construction/site-under-construction-fa/prev.png
229
+ - vendor/assets/images/under_construction/site-under-construction-fa/google.png
230
+ - vendor/assets/images/under_construction/site-under-construction-fa/youtube.png
231
+ - vendor/assets/images/under_construction/site-under-construction-fa/linkedin.png
232
+ - vendor/assets/images/under_construction/site-under-construction-fa/next.png
233
+ - vendor/assets/images/under_construction/site-under-construction-fa/stumbleupon.png
234
+ - vendor/assets/images/under_construction/site-under-construction-fa/deviantart.png
235
+ - vendor/assets/images/under_construction/site-under-construction-fa/bg.jpg
236
+ - vendor/assets/images/under_construction/site-under-construction-fa/skype.png
237
+ - vendor/assets/images/under_construction/site-under-construction-fa/mail-bg.png
238
+ - vendor/assets/images/under_construction/site-under-construction-fa/facebook.png
239
+ - vendor/assets/images/under_construction/site-under-construction-fa/logo.png
240
+ - vendor/assets/images/under_construction/site-under-construction-fa/counter_bg.png
241
+ - vendor/assets/images/under_construction/site-under-construction-fa/button.png
242
+ - vendor/assets/images/under_construction/site-under-construction-fa/page_background.png
243
+ - vendor/assets/images/under_construction/site-under-construction-fa/identica.png
244
+ - vendor/assets/images/under_construction/site-under-construction-fa/twitter.png
245
+ - vendor/assets/images/under_construction/site-under-construction-fa/yahoo.png
246
+ - vendor/assets/javascripts/under_construction/site-under-construction.js
247
+ - vendor/assets/javascripts/under_construction/site-under-construction-fa.js
248
+ - vendor/assets/javascripts/under_construction/site-under-construction/DD_belatedPNG_0.0.7a-min.js
249
+ - vendor/assets/javascripts/under_construction/site-under-construction/jquery.countdown.min.js
250
+ - vendor/assets/javascripts/under_construction/site-under-construction/jcarousellite1.0.1_min.js
251
+ - vendor/assets/javascripts/under_construction/site-under-construction-fa/DD_belatedPNG_0.0.7a-min.js
252
+ - vendor/assets/javascripts/under_construction/site-under-construction-fa/jquery.countdown.min.js
253
+ - vendor/assets/javascripts/under_construction/site-under-construction-fa/jquery.countdown-fa.js
254
+ - vendor/assets/javascripts/under_construction/site-under-construction-fa/jcarousellite1.0.1_min.js
255
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.woff
256
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.ttf
218
257
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.woff
219
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.svg
258
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.svg
259
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.ttf
220
260
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.eot
221
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.eot
222
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.woff
223
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/Paratype
224
- PT Sans Free Font License.txt
261
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.ttf
225
262
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.woff
226
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.svg
263
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.svg
264
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.ttf
265
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.ttf
227
266
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.woff
267
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.ttf
268
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.svg
269
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.woff
270
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.woff
271
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.woff
228
272
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.ttf
229
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.woff
230
273
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.ttf
231
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.eot
232
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.ttf
233
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.ttf
234
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.ttf
274
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.eot
275
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.svg
276
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.eot
277
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.svg
278
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.eot
235
279
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.woff
236
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.svg
280
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.eot
281
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/Paratype
282
+ PT Sans Free Font License.txt
283
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.eot
284
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.eot
237
285
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.svg
238
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.woff
239
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.svg
240
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.ttf
241
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.ttf
286
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.eot
242
287
  - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.svg
243
- - vendor/assets/javascripts/under_construction/site-under-construction.js
244
- - vendor/assets/javascripts/under_construction/site-under-construction-fa/jquery.countdown.min.js
245
- - vendor/assets/javascripts/under_construction/site-under-construction-fa/jcarousellite1.0.1_min.js
246
- - vendor/assets/javascripts/under_construction/site-under-construction-fa/DD_belatedPNG_0.0.7a-min.js
247
- - vendor/assets/javascripts/under_construction/site-under-construction-fa/jquery.countdown-fa.js
248
- - vendor/assets/javascripts/under_construction/site-under-construction/jquery.countdown.min.js
249
- - vendor/assets/javascripts/under_construction/site-under-construction/jcarousellite1.0.1_min.js
250
- - vendor/assets/javascripts/under_construction/site-under-construction/DD_belatedPNG_0.0.7a-min.js
251
- - vendor/assets/javascripts/under_construction/site-under-construction-fa.js
252
- - vendor/assets/stylesheets/under_construction/site-under-construction-fa/style.css
253
- - vendor/assets/stylesheets/under_construction/site-under-construction-fa.css
288
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.svg
289
+ - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.ttf
290
+ - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.eot
291
+ - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.woff
254
292
  - vendor/assets/stylesheets/under_construction/site-under-construction.css
293
+ - vendor/assets/stylesheets/under_construction/site-under-construction-fa.css
255
294
  - vendor/assets/stylesheets/under_construction/site-under-construction/style.css
256
- - vendor/assets/images/under_construction/site-under-construction-fa/twitter.png
257
- - vendor/assets/images/under_construction/site-under-construction-fa/stumbleupon.png
258
- - vendor/assets/images/under_construction/site-under-construction-fa/prev.png
259
- - vendor/assets/images/under_construction/site-under-construction-fa/flickr.png
260
- - vendor/assets/images/under_construction/site-under-construction-fa/logo.png
261
- - vendor/assets/images/under_construction/site-under-construction-fa/identica.png
262
- - vendor/assets/images/under_construction/site-under-construction-fa/facebook.png
263
- - vendor/assets/images/under_construction/site-under-construction-fa/yahoo.png
264
- - vendor/assets/images/under_construction/site-under-construction-fa/google.png
265
- - vendor/assets/images/under_construction/site-under-construction-fa/mail-bg.png
266
- - vendor/assets/images/under_construction/site-under-construction-fa/counter_bg.png
267
- - vendor/assets/images/under_construction/site-under-construction-fa/deviantart.png
268
- - vendor/assets/images/under_construction/site-under-construction-fa/linkedin.png
269
- - vendor/assets/images/under_construction/site-under-construction-fa/bg.jpg
270
- - vendor/assets/images/under_construction/site-under-construction-fa/page_background.png
271
- - vendor/assets/images/under_construction/site-under-construction-fa/skype.png
272
- - vendor/assets/images/under_construction/site-under-construction-fa/next.png
273
- - vendor/assets/images/under_construction/site-under-construction-fa/button.png
274
- - vendor/assets/images/under_construction/site-under-construction-fa/youtube.png
275
- - vendor/assets/images/under_construction/site-under-construction/twitter.png
276
- - vendor/assets/images/under_construction/site-under-construction/stumbleupon.png
277
- - vendor/assets/images/under_construction/site-under-construction/prev.png
278
- - vendor/assets/images/under_construction/site-under-construction/flickr.png
279
- - vendor/assets/images/under_construction/site-under-construction/logo.png
280
- - vendor/assets/images/under_construction/site-under-construction/identica.png
281
- - vendor/assets/images/under_construction/site-under-construction/facebook.png
282
- - vendor/assets/images/under_construction/site-under-construction/yahoo.png
283
- - vendor/assets/images/under_construction/site-under-construction/google.png
284
- - vendor/assets/images/under_construction/site-under-construction/mail-bg.png
285
- - vendor/assets/images/under_construction/site-under-construction/counter_bg.png
286
- - vendor/assets/images/under_construction/site-under-construction/deviantart.png
287
- - vendor/assets/images/under_construction/site-under-construction/linkedin.png
288
- - vendor/assets/images/under_construction/site-under-construction/bg.jpg
289
- - vendor/assets/images/under_construction/site-under-construction/page_background.png
290
- - vendor/assets/images/under_construction/site-under-construction/skype.png
291
- - vendor/assets/images/under_construction/site-under-construction/next.png
292
- - vendor/assets/images/under_construction/site-under-construction/button.png
293
- - vendor/assets/images/under_construction/site-under-construction/youtube.png
295
+ - vendor/assets/stylesheets/under_construction/site-under-construction-fa/style.css
294
296
  - Rakefile
295
297
  - README.md
296
298
  homepage: https://github.com/jnaqsh/under_construction
@@ -313,7 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
313
315
  version: '0'
314
316
  requirements: []
315
317
  rubyforge_project:
316
- rubygems_version: 1.8.24
318
+ rubygems_version: 1.8.25
317
319
  signing_key:
318
320
  specification_version: 3
319
321
  summary: A rails GEM to automaticaly moderate under construction pages with ability