under_construction 0.1.4 → 0.2.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 11e951832262bbdfd9899a4e53f2a0811e289b1a
4
+ data.tar.gz: cf17fed86738401d902b11ad835007ef8421838d
5
+ SHA512:
6
+ metadata.gz: 974ddb735750bba88b4e109c8d5b93aa920e558d864fd64cd5c3a7846d4cbd89727bd24acd1d37d2d38ec39347177befa9abc4b4841084872d8e9f3a51764a6c
7
+ data.tar.gz: e8e4b8e82707320af59f38d828d237aebcc0a1cac000cacd3baba6b55ee5f9f8057e120b37369ee2e8404cb8f0f281097cbb27492b1939e1f34f79b558fe7c57
data/README.md CHANGED
@@ -112,12 +112,22 @@ In javascript, you have to include under_construction/*theme* like below:
112
112
  //= require under_construction/site-under-construction
113
113
  //= require jquery_ujs
114
114
 
115
- Note: If you want your under construction works on production mode you must adds
115
+ Make a file in `config/initializers` named `assets.rb` and put follwing code inside it or Rails 4 may:
116
+
117
+ Rails.application.config.assets.precompile += %w( under_construction.js under_construction.css )
118
+
119
+ Rails 3 Note: If you want your under construction works on production mode you must adds
116
120
  under_construction.js and under_construction.css in your production env in
117
121
  config.assets.precompile like below:
118
122
 
119
123
  config.assets.precompile += %w( under_construction.js under_construction.css )
120
124
 
125
+ Rails 4
126
+ =======
127
+
128
+ * Don't forget to add `config/initializers/assets.rb` file or Rails will throw an error
129
+ * The scheduler will run `clear` task instantly if the date provided is past. Because of Rails 4 `spring` feature that keeps Rails loaded, when testing, the `clear` task may run repeatedly. So please make sure you stop `spring` everytime you change the time in `under_construction.yml`.
130
+
121
131
  I18n
122
132
  ====
123
133
  This gem is using standard Rails I18n translation for the error message generated and name of models.
@@ -20,7 +20,7 @@ class UnderConstructionEmailStorage
20
20
  end
21
21
 
22
22
  validates :email, presence: true, uniqueness: true,
23
- format: { with: /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i,
23
+ format: { with: /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i,
24
24
  message: I18n.t('activemodel.errors.models.under_construction_email_storage.attributes.email.format', default: "doesn't looks like correct") }
25
25
 
26
26
  def initialize(attributes = {})
@@ -17,16 +17,13 @@ module UnderConstruction
17
17
  file_path = 'config/routes.rb'
18
18
  gsub_file file_path, /#{Regexp.escape(ROUTES_CONFIG_TXT)}/, ''
19
19
  gsub_file file_path, /#{Regexp.escape(ROUTES_REDIRECT_TO_TXT)}/, ''
20
- insert_into_file file_path, ROUTES_CLEAR_TXT, after: /Application.routes.draw do/
20
+ if ::Rails::VERSION::MAJOR >= 4
21
+ insert_into_file file_path, ROUTES_CLEAR_TXT, after: /Rails.application.routes.draw do/
22
+ else
23
+ insert_into_file file_path, ROUTES_CLEAR_TXT, after: /Application.routes.draw do/
24
+ end
21
25
  end
22
26
 
23
- # def remove_view_files
24
- # file_path = 'app/views/under_construction'
25
- # if File.exist? file_path
26
- # remove_file file_path
27
- # end
28
- # end
29
-
30
27
  def remove_scheduler_file
31
28
  file_path = 'config/initializers/under_construction_scheduler.rb'
32
29
  if File.exist? file_path
@@ -20,9 +20,15 @@ module UnderConstruction
20
20
 
21
21
  def config_route_file
22
22
  file_path = 'config/routes.rb'
23
- gsub_file file_path, /match "under_construction", :to => redirect\('\/'\)/, ''
24
- insert_into_file file_path, ROUTES_CONFIG_TXT, after: /Application.routes.draw do/
25
- gsub_file file_path, /(Application.routes.draw do)(.*)(end)/m, '\1\2'+"#{ROUTES_REDIRECT_TO_TXT}" + '\3'
23
+ if ::Rails::VERSION::MAJOR >= 4
24
+ gsub_file file_path, /#{Regexp.escape(ROUTES_CLEAR_TXT)}/, ''
25
+ insert_into_file file_path, ROUTES_CONFIG_TXT, after: /Rails.application.routes.draw do/
26
+ gsub_file file_path, /(Rails.application.routes.draw do)(.*)(end)/m, '\1\2'+"#{ROUTES_REDIRECT_TO_TXT}" + '\3'
27
+ else
28
+ gsub_file file_path, /#{Regexp.escape(ROUTES_CLEAR_TXT)}/, ''
29
+ insert_into_file file_path, ROUTES_CONFIG_TXT, after: /Application.routes.draw do/
30
+ gsub_file file_path, /(Application.routes.draw do)(.*)(end)/m, '\1\2'+"#{ROUTES_REDIRECT_TO_TXT}" + '\3'
31
+ end
26
32
  end
27
33
 
28
34
  def copy_index_file_to_app
@@ -22,16 +22,32 @@ module UnderConstruction
22
22
  resources 'under_construction', only: :index
23
23
  EOM
24
24
 
25
- ROUTES_REDIRECT_TO_TXT = <<-EOM
25
+ if ::Rails::VERSION::MAJOR >= 4
26
+ ROUTES_REDIRECT_TO_TXT = <<-EOM
27
+
28
+ # generated by under_construction gem
29
+ match "/*other" => redirect("/under_construction"), via: :all
30
+ EOM
31
+ else
32
+ ROUTES_REDIRECT_TO_TXT = <<-EOM
26
33
 
27
34
  # generated by under_construction gem
28
35
  match "/*other" => redirect("/under_construction")
29
36
  EOM
37
+ end
30
38
 
31
- ROUTES_CLEAR_TXT = <<-EOM
39
+ if ::Rails::VERSION::MAJOR >= 4
40
+ ROUTES_CLEAR_TXT = <<-EOM
41
+
42
+ # generated by under_construction gem
43
+ match "under_construction", :to => redirect('/'), via: :all
44
+ EOM
45
+ else
46
+ ROUTES_CLEAR_TXT = <<-EOM
32
47
 
33
48
  # generated by under_construction gem
34
49
  match "under_construction", :to => redirect('/')
35
50
  EOM
51
+ end
36
52
  end
37
53
  end
@@ -1,3 +1,3 @@
1
1
  module UnderConstruction
2
- VERSION = "0.1.4"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: under_construction
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
5
- prerelease:
4
+ version: 0.2.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Arash Mousavi
@@ -10,314 +9,308 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2013-04-06 00:00:00.000000000 Z
12
+ date: 2014-06-11 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: rails
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ~>
18
+ - - "~>"
21
19
  - !ruby/object:Gem::Version
22
- version: '3.2'
20
+ version: '4.0'
23
21
  type: :runtime
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
- - - ~>
25
+ - - "~>"
29
26
  - !ruby/object:Gem::Version
30
- version: '3.2'
27
+ version: '4.0'
31
28
  - !ruby/object:Gem::Dependency
32
29
  name: rufus-scheduler
33
30
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
31
  requirements:
36
- - - ~>
32
+ - - "~>"
37
33
  - !ruby/object:Gem::Version
38
34
  version: '2.0'
39
35
  type: :runtime
40
36
  prerelease: false
41
37
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
- - - ~>
39
+ - - "~>"
45
40
  - !ruby/object:Gem::Version
46
41
  version: '2.0'
47
42
  - !ruby/object:Gem::Dependency
48
43
  name: chronic
49
44
  requirement: !ruby/object:Gem::Requirement
50
- none: false
51
45
  requirements:
52
- - - ~>
46
+ - - "~>"
53
47
  - !ruby/object:Gem::Version
54
48
  version: '0.9'
55
49
  type: :runtime
56
50
  prerelease: false
57
51
  version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
52
  requirements:
60
- - - ~>
53
+ - - "~>"
61
54
  - !ruby/object:Gem::Version
62
55
  version: '0.9'
63
56
  - !ruby/object:Gem::Dependency
64
57
  name: sqlite3
65
58
  requirement: !ruby/object:Gem::Requirement
66
- none: false
67
59
  requirements:
68
- - - ! '>='
60
+ - - ">="
69
61
  - !ruby/object:Gem::Version
70
62
  version: '0'
71
63
  type: :development
72
64
  prerelease: false
73
65
  version_requirements: !ruby/object:Gem::Requirement
74
- none: false
75
66
  requirements:
76
- - - ! '>='
67
+ - - ">="
77
68
  - !ruby/object:Gem::Version
78
69
  version: '0'
79
70
  - !ruby/object:Gem::Dependency
80
71
  name: rspec-rails
81
72
  requirement: !ruby/object:Gem::Requirement
82
- none: false
83
73
  requirements:
84
- - - ! '>='
74
+ - - '='
85
75
  - !ruby/object:Gem::Version
86
- version: '0'
76
+ version: 2.14.2
87
77
  type: :development
88
78
  prerelease: false
89
79
  version_requirements: !ruby/object:Gem::Requirement
90
- none: false
91
80
  requirements:
92
- - - ! '>='
81
+ - - '='
93
82
  - !ruby/object:Gem::Version
94
- version: '0'
83
+ version: 2.14.2
95
84
  - !ruby/object:Gem::Dependency
96
85
  name: guard-rspec
97
86
  requirement: !ruby/object:Gem::Requirement
98
- none: false
99
87
  requirements:
100
- - - ! '>='
88
+ - - ">="
101
89
  - !ruby/object:Gem::Version
102
90
  version: '0'
103
91
  type: :development
104
92
  prerelease: false
105
93
  version_requirements: !ruby/object:Gem::Requirement
106
- none: false
107
94
  requirements:
108
- - - ! '>='
95
+ - - ">="
109
96
  - !ruby/object:Gem::Version
110
97
  version: '0'
111
98
  - !ruby/object:Gem::Dependency
112
99
  name: rb-inotify
113
100
  requirement: !ruby/object:Gem::Requirement
114
- none: false
115
101
  requirements:
116
- - - ! '>='
102
+ - - ">="
117
103
  - !ruby/object:Gem::Version
118
104
  version: '0'
119
105
  type: :development
120
106
  prerelease: false
121
107
  version_requirements: !ruby/object:Gem::Requirement
122
- none: false
123
108
  requirements:
124
- - - ! '>='
109
+ - - ">="
125
110
  - !ruby/object:Gem::Version
126
111
  version: '0'
127
112
  - !ruby/object:Gem::Dependency
128
113
  name: capybara
129
114
  requirement: !ruby/object:Gem::Requirement
130
- none: false
131
115
  requirements:
132
- - - ! '>='
116
+ - - ">="
133
117
  - !ruby/object:Gem::Version
134
118
  version: '0'
135
119
  type: :development
136
120
  prerelease: false
137
121
  version_requirements: !ruby/object:Gem::Requirement
138
- none: false
139
122
  requirements:
140
- - - ! '>='
123
+ - - ">="
141
124
  - !ruby/object:Gem::Version
142
125
  version: '0'
143
126
  - !ruby/object:Gem::Dependency
144
127
  name: ammeter
145
128
  requirement: !ruby/object:Gem::Requirement
146
- none: false
147
129
  requirements:
148
- - - ! '>='
130
+ - - ">="
149
131
  - !ruby/object:Gem::Version
150
132
  version: '0'
151
133
  type: :development
152
134
  prerelease: false
153
135
  version_requirements: !ruby/object:Gem::Requirement
154
- none: false
155
136
  requirements:
156
- - - ! '>='
137
+ - - ">="
157
138
  - !ruby/object:Gem::Version
158
139
  version: '0'
159
140
  - !ruby/object:Gem::Dependency
160
141
  name: pry
161
142
  requirement: !ruby/object:Gem::Requirement
162
- none: false
163
143
  requirements:
164
- - - ! '>='
144
+ - - "~>"
165
145
  - !ruby/object:Gem::Version
166
- version: '0'
146
+ version: '0.9'
167
147
  type: :development
168
148
  prerelease: false
169
149
  version_requirements: !ruby/object:Gem::Requirement
170
- none: false
171
150
  requirements:
172
- - - ! '>='
151
+ - - "~>"
173
152
  - !ruby/object:Gem::Version
174
- version: '0'
175
- description: ! "A rails GEM to automaticaly moderate under construction\n pages
176
- with ability to automatically schedule for launch time.\n Also
177
- it have two default themes and some other fancy things."
153
+ version: '0.9'
154
+ - !ruby/object:Gem::Dependency
155
+ name: pry-nav
156
+ requirement: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - "~>"
159
+ - !ruby/object:Gem::Version
160
+ version: 0.2.3
161
+ type: :development
162
+ prerelease: false
163
+ version_requirements: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - "~>"
166
+ - !ruby/object:Gem::Version
167
+ version: 0.2.3
168
+ description: |-
169
+ A rails GEM to automaticaly moderate under construction
170
+ pages with ability to automatically schedule for launch time.
171
+ Also it have two default themes and some other fancy things.
178
172
  email:
179
173
  - mousavi.arash@gmail.com
180
- - h.ramezanian@jnaqsh.com
174
+ - hamed.r.nik@gmail.com
181
175
  executables: []
182
176
  extensions: []
183
177
  extra_rdoc_files: []
184
178
  files:
185
- - app/models/under_construction_email_storage.rb
179
+ - README.md
180
+ - Rakefile
186
181
  - app/controllers/under_construction_controller.rb
187
182
  - app/controllers/under_construction_email_storage_controller.rb
188
- - app/mailers/notify_under_construction_submitted_mails.rb
189
183
  - app/helpers/email_storage_helper.rb
190
- - app/views/notify_under_construction_submitted_mails/under_construction_notify.text.erb
184
+ - app/mailers/notify_under_construction_submitted_mails.rb
185
+ - app/models/under_construction_email_storage.rb
191
186
  - app/views/email_storage/_form.html.erb
192
- - lib/tasks/under_cunstruction_tasks.rake
193
- - lib/under_construction.rb
194
- - lib/generators/under_construction/config_generator.rb
195
- - lib/generators/under_construction/templates/under_construction.yml
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
187
+ - app/views/notify_under_construction_submitted_mails/under_construction_notify.text.erb
201
188
  - lib/generators/under_construction/USAGE
202
189
  - lib/generators/under_construction/clear_generator.rb
190
+ - lib/generators/under_construction/config_generator.rb
203
191
  - lib/generators/under_construction/constants.rb
192
+ - lib/generators/under_construction/templates/under_construction.yml
193
+ - lib/generators/under_construction/templates/under_construction/site-under-construction-fa/create.js.erb
194
+ - lib/generators/under_construction/templates/under_construction/site-under-construction-fa/index.html.erb
195
+ - lib/generators/under_construction/templates/under_construction/site-under-construction/create.js.erb
196
+ - lib/generators/under_construction/templates/under_construction/site-under-construction/index.html.erb
197
+ - lib/generators/under_construction/templates/under_construction_scheduler.rb
198
+ - lib/tasks/under_cunstruction_tasks.rake
199
+ - lib/under_construction.rb
200
+ - lib/under_construction/config.rb
204
201
  - lib/under_construction/engine.rb
205
- - lib/under_construction/version.rb
206
202
  - 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
203
+ - lib/under_construction/version.rb
204
+ - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.eot
205
+ - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.ttf
206
+ - vendor/assets/fonts/under_construction/site-under-construction-fa/IranianSans.woff
207
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.eot
208
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.svg
209
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.ttf
210
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.woff
211
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.eot
212
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.svg
213
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.ttf
214
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.woff
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/PTN57F-webfont.svg
217
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.ttf
218
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.woff
219
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.eot
220
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.svg
221
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.ttf
222
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-webfont.woff
223
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.eot
224
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.svg
225
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.ttf
226
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.woff
227
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.eot
228
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.svg
229
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.ttf
230
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.woff
231
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.eot
232
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.svg
233
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.ttf
234
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.woff
235
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.eot
236
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.svg
237
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.ttf
238
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.woff
239
+ - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/Paratype
240
+ PT Sans Free Font License.txt
241
+ - vendor/assets/images/under_construction/site-under-construction-fa/bg.jpg
242
+ - vendor/assets/images/under_construction/site-under-construction-fa/button.png
243
+ - vendor/assets/images/under_construction/site-under-construction-fa/counter_bg.png
244
+ - vendor/assets/images/under_construction/site-under-construction-fa/deviantart.png
245
+ - vendor/assets/images/under_construction/site-under-construction-fa/facebook.png
227
246
  - vendor/assets/images/under_construction/site-under-construction-fa/flickr.png
228
- - vendor/assets/images/under_construction/site-under-construction-fa/prev.png
229
247
  - vendor/assets/images/under_construction/site-under-construction-fa/google.png
230
- - vendor/assets/images/under_construction/site-under-construction-fa/youtube.png
248
+ - vendor/assets/images/under_construction/site-under-construction-fa/identica.png
231
249
  - 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
250
  - 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
251
+ - vendor/assets/images/under_construction/site-under-construction-fa/mail-bg.png
252
+ - vendor/assets/images/under_construction/site-under-construction-fa/next.png
242
253
  - vendor/assets/images/under_construction/site-under-construction-fa/page_background.png
243
- - vendor/assets/images/under_construction/site-under-construction-fa/identica.png
254
+ - vendor/assets/images/under_construction/site-under-construction-fa/prev.png
255
+ - vendor/assets/images/under_construction/site-under-construction-fa/skype.png
256
+ - vendor/assets/images/under_construction/site-under-construction-fa/stumbleupon.png
244
257
  - vendor/assets/images/under_construction/site-under-construction-fa/twitter.png
245
258
  - vendor/assets/images/under_construction/site-under-construction-fa/yahoo.png
246
- - vendor/assets/javascripts/under_construction/site-under-construction.js
259
+ - vendor/assets/images/under_construction/site-under-construction-fa/youtube.png
260
+ - vendor/assets/images/under_construction/site-under-construction/bg.jpg
261
+ - vendor/assets/images/under_construction/site-under-construction/button.png
262
+ - vendor/assets/images/under_construction/site-under-construction/counter_bg.png
263
+ - vendor/assets/images/under_construction/site-under-construction/deviantart.png
264
+ - vendor/assets/images/under_construction/site-under-construction/facebook.png
265
+ - vendor/assets/images/under_construction/site-under-construction/flickr.png
266
+ - vendor/assets/images/under_construction/site-under-construction/google.png
267
+ - vendor/assets/images/under_construction/site-under-construction/identica.png
268
+ - vendor/assets/images/under_construction/site-under-construction/linkedin.png
269
+ - vendor/assets/images/under_construction/site-under-construction/logo.png
270
+ - vendor/assets/images/under_construction/site-under-construction/mail-bg.png
271
+ - vendor/assets/images/under_construction/site-under-construction/next.png
272
+ - vendor/assets/images/under_construction/site-under-construction/page_background.png
273
+ - vendor/assets/images/under_construction/site-under-construction/prev.png
274
+ - vendor/assets/images/under_construction/site-under-construction/skype.png
275
+ - vendor/assets/images/under_construction/site-under-construction/stumbleupon.png
276
+ - vendor/assets/images/under_construction/site-under-construction/twitter.png
277
+ - vendor/assets/images/under_construction/site-under-construction/yahoo.png
278
+ - vendor/assets/images/under_construction/site-under-construction/youtube.png
247
279
  - 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
280
  - 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
281
  - 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
257
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS76F-webfont.woff
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
260
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.eot
261
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS55F-webfont.ttf
262
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC55F-webfont.woff
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
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
272
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.ttf
273
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN77F-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
279
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTN57F-webfont.woff
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
285
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS56F-webfont.svg
286
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTC75F-webfont.eot
287
- - vendor/assets/fonts/under_construction/site-under-construction/pt-sans/PTS75F-webfont.svg
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
292
- - vendor/assets/stylesheets/under_construction/site-under-construction.css
282
+ - vendor/assets/javascripts/under_construction/site-under-construction-fa/jquery.countdown-fa.js
283
+ - vendor/assets/javascripts/under_construction/site-under-construction-fa/jquery.countdown.min.js
284
+ - vendor/assets/javascripts/under_construction/site-under-construction.js
285
+ - vendor/assets/javascripts/under_construction/site-under-construction/DD_belatedPNG_0.0.7a-min.js
286
+ - vendor/assets/javascripts/under_construction/site-under-construction/jcarousellite1.0.1_min.js
287
+ - vendor/assets/javascripts/under_construction/site-under-construction/jquery.countdown.min.js
293
288
  - vendor/assets/stylesheets/under_construction/site-under-construction-fa.css
294
- - vendor/assets/stylesheets/under_construction/site-under-construction/style.css
295
289
  - vendor/assets/stylesheets/under_construction/site-under-construction-fa/style.css
296
- - Rakefile
297
- - README.md
290
+ - vendor/assets/stylesheets/under_construction/site-under-construction.css
291
+ - vendor/assets/stylesheets/under_construction/site-under-construction/style.css
298
292
  homepage: https://github.com/jnaqsh/under_construction
299
293
  licenses: []
294
+ metadata: {}
300
295
  post_install_message:
301
296
  rdoc_options: []
302
297
  require_paths:
303
298
  - lib
304
299
  required_ruby_version: !ruby/object:Gem::Requirement
305
- none: false
306
300
  requirements:
307
- - - ! '>='
301
+ - - ">="
308
302
  - !ruby/object:Gem::Version
309
303
  version: '0'
310
304
  required_rubygems_version: !ruby/object:Gem::Requirement
311
- none: false
312
305
  requirements:
313
- - - ! '>='
306
+ - - ">="
314
307
  - !ruby/object:Gem::Version
315
308
  version: '0'
316
309
  requirements: []
317
310
  rubyforge_project:
318
- rubygems_version: 1.8.25
311
+ rubygems_version: 2.2.2
319
312
  signing_key:
320
- specification_version: 3
313
+ specification_version: 4
321
314
  summary: A rails GEM to automaticaly moderate under construction pages with ability
322
315
  to automatically schedule for launch time
323
316
  test_files: []