lolita-file-upload 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bad60752c9c5a77fb9c8c76754eb40ceb9931f3a
4
- data.tar.gz: b10230f5aa0f7d896bb436e02324dd6ecfe7ca37
3
+ metadata.gz: 655b17816d0973b03e2d8edb57d60d4ffc39647d
4
+ data.tar.gz: df63e151dda2b418a4afa8ac8d9e861a3d1e0247
5
5
  SHA512:
6
- metadata.gz: b63032f1b0340729378973cd2c41b1939437c8a50a6823655bbce7daee3efb23658206cc8f8f4300ee513ac85ee75d93fb1356360cc394b6c751c7f083e80ee4
7
- data.tar.gz: e813324dab6176db4b9e847095a016c4b1fb808ad5e35462e4f950b8a19995034a7007282f639df4c829e88e52c75b79fb99559402def279929d8df2e3fa0490
6
+ metadata.gz: bb6407a694116e65127705d3950a42bbfcd2106030ae633030a2d9d5b0b5dffef873ee30b168a79d75a0cc8a7a79797e1e45f584590a0b0d677c39b915d35a08
7
+ data.tar.gz: e0103beecd4b282652e0d1fbb1631a203bc45f0787b5eae25ebd2a008947068a6a89070e12ebd869187e75ff6a12a7902434456580f9a380e4a1c5e4e771169f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lolita-file-upload (0.8.0)
4
+ lolita-file-upload (0.8.1)
5
5
  carrierwave (~> 0.6.0)
6
6
  lolita (~> 3.2)
7
7
  mini_magick (~> 3.6.0)
@@ -52,7 +52,8 @@ GEM
52
52
  factory_girl (3.6.2)
53
53
  activesupport (>= 3.0.0)
54
54
  ffaker (1.16.2)
55
- haml (3.1.8)
55
+ haml (4.0.5)
56
+ tilt
56
57
  hike (1.2.3)
57
58
  i18n (0.6.1)
58
59
  journey (1.0.4)
@@ -60,17 +61,18 @@ GEM
60
61
  railties (>= 3.0, < 5.0)
61
62
  thor (>= 0.14, < 2.0)
62
63
  json (1.8.0)
63
- kaminari (0.14.1)
64
+ kaminari (0.15.0)
64
65
  actionpack (>= 3.0.0)
65
66
  activesupport (>= 3.0.0)
66
- lolita (3.3.0)
67
+ lolita (3.3.7)
67
68
  abstract (~> 1)
69
+ actionpack (~> 3.2.0)
68
70
  activesupport (~> 3.2.0)
69
- haml (~> 3.0)
70
- jquery-rails (~> 2.2.1)
71
+ haml (> 3.0, < 5.0)
72
+ jquery-rails (>= 2.1, < 3.0)
71
73
  kaminari (~> 0.13)
72
74
  tinymce-rails (~> 3.5.8)
73
- tinymce-rails-config-manager
75
+ tinymce-rails-config-manager (>= 0.1)
74
76
  mail (2.5.4)
75
77
  mime-types (~> 1.16)
76
78
  treetop (~> 1.4.8)
@@ -128,10 +130,10 @@ GEM
128
130
  subexec (0.2.3)
129
131
  thor (0.18.1)
130
132
  tilt (1.4.1)
131
- tinymce-rails (3.5.8.3)
133
+ tinymce-rails (3.5.9)
132
134
  railties (>= 3.1.1)
133
- tinymce-rails-config-manager (0.0.7)
134
- railties (~> 3.2.8)
135
+ tinymce-rails-config-manager (0.1.0)
136
+ railties (>= 3.2)
135
137
  treetop (1.4.14)
136
138
  polyglot
137
139
  polyglot (>= 0.3.1)
@@ -1,4 +1,4 @@
1
- <% unless ::I18n.locale.to_s.downcase=="en" %>
1
+ <% if %w(lv ru).include?(::I18n.locale.to_s.downcase) %>
2
2
  <%= javascript_include_tag "lolita/file-upload/I18n/#{Lolita.locale}.js"%>
3
3
  <% end %>
4
4
  <script type="text/javascript">
@@ -3,7 +3,7 @@
3
3
  if !defined?(Lolita)
4
4
  require "lolita"
5
5
  end
6
- $:<<File.dirname(__FILE__) unless $:.include?(File.dirname(__FILE__))
6
+ $: << File.dirname(__FILE__) unless $:.include?(File.dirname(__FILE__))
7
7
 
8
8
  I18n.load_path += Dir[File.expand_path("config/locales")+"/**/*.yml"] if defined?(I18n)
9
9
 
@@ -61,4 +61,4 @@ end
61
61
  # How to connect multimedia engine with lolita resources
62
62
  # Detecting from tabs will not be very good idea because it will load many thing
63
63
  # There should be the way to connect it on demand when realy multimedia tab is used for resource like
64
- # lolita/posts/files/new[create,destroy,update, index]
64
+ # lolita/posts/files/new[create,destroy,update, index]
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "lolita-file-upload"
6
- s.version = "0.8.0"
6
+ s.version = "0.8.1"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["ITHouse (Latvia)", "Arturs Meisters", "Gatis Tomsons"]
9
9
  s.description = "File upload gem for Lolita with with fulll integration - models, controller, views"
@@ -20,4 +20,4 @@ Gem::Specification.new do |s|
20
20
  s.files = `git ls-files`.split("\n")
21
21
  s.test_files = `git ls-files -- {test_orm,spec}/*`.split("\n")
22
22
  s.require_paths = ["lib"]
23
- end
23
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lolita-file-upload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ITHouse (Latvia)
@@ -10,48 +10,48 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-07-09 00:00:00.000000000 Z
13
+ date: 2014-03-14 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: lolita
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - ~>
19
+ - - "~>"
20
20
  - !ruby/object:Gem::Version
21
21
  version: '3.2'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - ~>
26
+ - - "~>"
27
27
  - !ruby/object:Gem::Version
28
28
  version: '3.2'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: carrierwave
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - ~>
33
+ - - "~>"
34
34
  - !ruby/object:Gem::Version
35
35
  version: 0.6.0
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ~>
40
+ - - "~>"
41
41
  - !ruby/object:Gem::Version
42
42
  version: 0.6.0
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: mini_magick
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - ~>
47
+ - - "~>"
48
48
  - !ruby/object:Gem::Version
49
49
  version: 3.6.0
50
50
  type: :runtime
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
- - - ~>
54
+ - - "~>"
55
55
  - !ruby/object:Gem::Version
56
56
  version: 3.6.0
57
57
  description: File upload gem for Lolita with with fulll integration - models, controller,
@@ -63,9 +63,9 @@ extra_rdoc_files:
63
63
  - LICENSE.txt
64
64
  - README.md
65
65
  files:
66
- - .document
67
- - .gitignore
68
- - .rspec
66
+ - ".document"
67
+ - ".gitignore"
68
+ - ".rspec"
69
69
  - Gemfile
70
70
  - Gemfile.lock
71
71
  - LICENSE.txt
@@ -209,17 +209,17 @@ require_paths:
209
209
  - lib
210
210
  required_ruby_version: !ruby/object:Gem::Requirement
211
211
  requirements:
212
- - - '>='
212
+ - - ">="
213
213
  - !ruby/object:Gem::Version
214
214
  version: '0'
215
215
  required_rubygems_version: !ruby/object:Gem::Requirement
216
216
  requirements:
217
- - - '>='
217
+ - - ">="
218
218
  - !ruby/object:Gem::Version
219
219
  version: '0'
220
220
  requirements: []
221
221
  rubyforge_project:
222
- rubygems_version: 2.0.3
222
+ rubygems_version: 2.2.0
223
223
  signing_key:
224
224
  specification_version: 4
225
225
  summary: File upload gem for Lolita CMS