browse-everything 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +18 -6
- data/Gemfile +9 -2
- data/HISTORY.md +3 -0
- data/app/assets/stylesheets/browse_everything.css.scss +3 -3
- data/browse-everything.gemspec +1 -0
- data/lib/browse_everything/version.rb +1 -1
- data/spec/features/test_compiling_stylesheets_spec.rb +8 -0
- data/spec/spec_helper.rb +3 -0
- metadata +19 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0537c853279c1686cb6da696a32c72ece3ecb9d
|
4
|
+
data.tar.gz: 79ba0379386ab732db182cffc6f2d45415574bc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60207418ff9b7fd8d73e5f566dca07f0f1abb2b906d28a73785d629d4bc05ab1958dd0036148720738a663f11936b4f0f094a5719a77e3293e2c007434f882f0
|
7
|
+
data.tar.gz: 8beddddc6d2bb71cd29247e1e9bdf7c4d326cd276531950e3875e17239011a88e095754af3512a69e5c0c3d94fdafa8ad13440eb2e35e114d55f62c7b3f210ce
|
data/.travis.yml
CHANGED
@@ -1,10 +1,22 @@
|
|
1
1
|
language: ruby
|
2
|
+
cache: bundler
|
3
|
+
sudo: false
|
2
4
|
rvm:
|
3
|
-
-
|
4
|
-
- "2.0.0"
|
5
|
-
- "2.1.0"
|
6
|
-
notifications:
|
7
|
-
irc: "irc.freenode.org#projecthydra"
|
5
|
+
- 2.1
|
8
6
|
env:
|
9
7
|
global:
|
10
|
-
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
8
|
+
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
9
|
+
matrix:
|
10
|
+
- "RAILS_VERSION=4.1.8"
|
11
|
+
- "RAILS_VERSION=4.2.0"
|
12
|
+
|
13
|
+
matrix:
|
14
|
+
include:
|
15
|
+
- rvm: 1.9.3
|
16
|
+
env: "RAILS_VERSION=4.1.8"
|
17
|
+
- rvm: 2.0
|
18
|
+
env: "RAILS_VERSION=4.1.8"
|
19
|
+
|
20
|
+
notifications:
|
21
|
+
irc: "irc.freenode.org#projecthydra"
|
22
|
+
|
data/Gemfile
CHANGED
@@ -3,10 +3,17 @@ source 'https://rubygems.org'
|
|
3
3
|
# Specify your gem's dependencies in browse_everything.gemspec
|
4
4
|
gemspec
|
5
5
|
|
6
|
-
gem 'spring', group: :development
|
7
|
-
|
8
6
|
file = File.expand_path("Gemfile", ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path("../spec/internal", __FILE__))
|
9
7
|
if File.exists?(file)
|
10
8
|
puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
|
11
9
|
instance_eval File.read(file)
|
10
|
+
else
|
11
|
+
gem 'rails', ENV['RAILS_VERSION'] if ENV['RAILS_VERSION']
|
12
|
+
|
13
|
+
if ENV['RAILS_VERSION'] and ENV['RAILS_VERSION'] !~ /^4.2/
|
14
|
+
gem 'sass-rails', "< 5.0"
|
15
|
+
else
|
16
|
+
gem 'responders', "~> 2.0"
|
17
|
+
gem 'sass-rails', ">= 5.0"
|
18
|
+
end
|
12
19
|
end
|
data/HISTORY.md
CHANGED
@@ -88,13 +88,13 @@
|
|
88
88
|
text-decoration: inherit;
|
89
89
|
-webkit-font-smoothing: antialiased;
|
90
90
|
*margin-right: .3em;
|
91
|
-
@extend .icon-check;
|
91
|
+
@extend .icon-check !optional;
|
92
92
|
}
|
93
|
-
|
93
|
+
|
94
94
|
.fa4 .ev-selected .indenter {
|
95
95
|
background-color: inherit;
|
96
96
|
@extend .fa;
|
97
|
-
@extend .fa-check;
|
97
|
+
@extend .fa-check !optional;
|
98
98
|
}
|
99
99
|
|
100
100
|
.ev-files {
|
data/browse-everything.gemspec
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: browse-everything
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carolyn Cole
|
@@ -13,7 +13,7 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
|
-
date: 2014-12-
|
16
|
+
date: 2014-12-23 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: rails
|
@@ -323,6 +323,20 @@ dependencies:
|
|
323
323
|
- - ">="
|
324
324
|
- !ruby/object:Gem::Version
|
325
325
|
version: '0'
|
326
|
+
- !ruby/object:Gem::Dependency
|
327
|
+
name: capybara
|
328
|
+
requirement: !ruby/object:Gem::Requirement
|
329
|
+
requirements:
|
330
|
+
- - ">="
|
331
|
+
- !ruby/object:Gem::Version
|
332
|
+
version: '0'
|
333
|
+
type: :development
|
334
|
+
prerelease: false
|
335
|
+
version_requirements: !ruby/object:Gem::Requirement
|
336
|
+
requirements:
|
337
|
+
- - ">="
|
338
|
+
- !ruby/object:Gem::Version
|
339
|
+
version: '0'
|
326
340
|
description: AJAX/Rails engine file browser for cloud storage services
|
327
341
|
email:
|
328
342
|
- cam156@psu.edu
|
@@ -379,6 +393,7 @@ files:
|
|
379
393
|
- lib/browse_everything/version.rb
|
380
394
|
- lib/generators/browse_everything/config_generator.rb
|
381
395
|
- lib/generators/browse_everything/templates/browse_everything_providers.yml.example
|
396
|
+
- spec/features/test_compiling_stylesheets_spec.rb
|
382
397
|
- spec/fixtures/file_system/dir_1/dir_3/file_3.m4v
|
383
398
|
- spec/fixtures/file_system/dir_1/file_2.txt
|
384
399
|
- spec/fixtures/file_system/dir_2/file_4.docx
|
@@ -428,6 +443,7 @@ signing_key:
|
|
428
443
|
specification_version: 4
|
429
444
|
summary: AJAX/Rails engine file browser for cloud storage services
|
430
445
|
test_files:
|
446
|
+
- spec/features/test_compiling_stylesheets_spec.rb
|
431
447
|
- spec/fixtures/file_system/dir_1/dir_3/file_3.m4v
|
432
448
|
- spec/fixtures/file_system/dir_1/file_2.txt
|
433
449
|
- spec/fixtures/file_system/dir_2/file_4.docx
|
@@ -448,3 +464,4 @@ test_files:
|
|
448
464
|
- spec/unit/file_system_spec.rb
|
449
465
|
- spec/unit/retriever_spec.rb
|
450
466
|
- spec/unit/sky_drive_spec.rb
|
467
|
+
has_rdoc:
|