repository-manager 0.0.12 → 0.0.13
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 +8 -8
- data/Gemfile.lock +3 -3
- data/README.md +0 -1
- data/lib/repository_manager/version.rb +1 -1
- data/repository-manager.gemspec +30 -30
- data/spec/dummy/db/test.sqlite3 +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZTlmNWQyMTJkYjFkOTI4MDE0OTY3Mjc0MmFhNTE1MDIxZGY1ZDkwOQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YjNhNzhmNWJjMzM4ZTVhYjdmMjcwMWUzMDk0NTMxNDE2N2ExNjI2MA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MmVhNDkxYTc2YTI4NmFiNmY5YzkxMjk5OTQyODE4OTNkODlmMDRiODQ1ODE3
|
|
10
|
+
OTIzYTIwNDllMWRlZjE2YWZjZDY4MDNhNmQyNzUyMjM2NDA5ZjZkYjMyNTQ5
|
|
11
|
+
MjhhOGZhMDcyZmY0ODdhNjExNjc5NDBhZmVhMDFkZmIwNWZkNjY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NWE1MzE0MmU0OTU1Yjc4OTMyYmE0ODdiMjdlMzI5MTU0ODRhNGQxMjliNTBh
|
|
14
|
+
Mzg0YTkyYTVmYjYzYTg5ZjkwNDE5MTg5MDk5ZmFkNzc2MjM2YzNkNGY1Mzky
|
|
15
|
+
ZTNlNTEyMjQ0MDQ3OTIxN2RjYTY0MzNlNjVkMDljMmM1MTU4MTM=
|
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
repository-manager (0.0.
|
|
4
|
+
repository-manager (0.0.12)
|
|
5
5
|
ancestry
|
|
6
6
|
carrierwave
|
|
7
|
-
rails (
|
|
7
|
+
rails (~> 4.0.0)
|
|
8
8
|
rubyzip
|
|
9
9
|
|
|
10
10
|
GEM
|
|
@@ -56,7 +56,7 @@ GEM
|
|
|
56
56
|
mail (2.5.4)
|
|
57
57
|
mime-types (~> 1.16)
|
|
58
58
|
treetop (~> 1.4.8)
|
|
59
|
-
mime-types (1.25)
|
|
59
|
+
mime-types (1.25.1)
|
|
60
60
|
minitest (4.7.5)
|
|
61
61
|
multi_json (1.8.2)
|
|
62
62
|
polyglot (0.3.3)
|
data/README.md
CHANGED
|
@@ -407,7 +407,6 @@ the_folder.delete_zip
|
|
|
407
407
|
|
|
408
408
|
## TODO
|
|
409
409
|
|
|
410
|
-
- Qu'on ne puisse pas créer un deuxième sous partage pour le même user (évite beaucoup de soucis)
|
|
411
410
|
- Write the methods : move, copy, share_link, rename.
|
|
412
411
|
- Snapshot the file if possible
|
|
413
412
|
- Versioning
|
data/repository-manager.gemspec
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
-
|
|
3
|
-
# Maintain your gem's version:
|
|
4
|
-
require "repository_manager/version"
|
|
5
|
-
|
|
6
|
-
# Describe your gem and declare its dependencies:
|
|
7
|
-
Gem::Specification.new do |s|
|
|
8
|
-
s.name = 'repository-manager'
|
|
9
|
-
s.version = RepositoryManager::VERSION
|
|
10
|
-
s.authors = ['Yves Baumann']
|
|
11
|
-
s.email = ['texicitys@gmail.com']
|
|
12
|
-
s.homepage = 'https://github.com/Texicitys/repository-manager'
|
|
13
|
-
s.summary = "Ruby on Rails plugin (gem) for managing repositories (files/folders/permissions/sharings)."
|
|
14
|
-
s.description = "This project is based on the need for a repository manager system for Collaide. A system for easily create/delete files and folders in a repository. For sharing these repositories easily with other object with a flexible and complete authorisations management.
|
|
15
|
-
Each instance (users, groups, etc..) can have it own repositories (with files and folders). It can manage them easily (edit, remove, add, etc) and sharing them with other instance."
|
|
16
|
-
|
|
17
|
-
#s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
|
|
18
|
-
s.files = `git ls-files`.split("\n")
|
|
19
|
-
s.test_files = `git ls-files -- spec/*`.split("\n")
|
|
20
|
-
#s.test_files = Dir["spec/**/*"]
|
|
21
|
-
s.license = 'MIT'
|
|
22
|
-
|
|
23
|
-
s.add_runtime_dependency 'rails', '~>
|
|
24
|
-
|
|
25
|
-
s.add_development_dependency 'factory_girl_rails'
|
|
26
|
-
s.add_development_dependency 'sqlite3'
|
|
27
|
-
s.add_development_dependency 'rspec-rails', '~> 2.0'
|
|
28
|
-
s.add_runtime_dependency 'ancestry'
|
|
29
|
-
s.add_runtime_dependency 'carrierwave'
|
|
30
|
-
s.add_runtime_dependency 'rubyzip'#, '< 1.0.0'#, :require => 'zip/zip'
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
|
|
3
|
+
# Maintain your gem's version:
|
|
4
|
+
require "repository_manager/version"
|
|
5
|
+
|
|
6
|
+
# Describe your gem and declare its dependencies:
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = 'repository-manager'
|
|
9
|
+
s.version = RepositoryManager::VERSION
|
|
10
|
+
s.authors = ['Yves Baumann']
|
|
11
|
+
s.email = ['texicitys@gmail.com']
|
|
12
|
+
s.homepage = 'https://github.com/Texicitys/repository-manager'
|
|
13
|
+
s.summary = "Ruby on Rails plugin (gem) for managing repositories (files/folders/permissions/sharings)."
|
|
14
|
+
s.description = "This project is based on the need for a repository manager system for Collaide. A system for easily create/delete files and folders in a repository. For sharing these repositories easily with other object with a flexible and complete authorisations management.
|
|
15
|
+
Each instance (users, groups, etc..) can have it own repositories (with files and folders). It can manage them easily (edit, remove, add, etc) and sharing them with other instance."
|
|
16
|
+
|
|
17
|
+
#s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
|
|
18
|
+
s.files = `git ls-files`.split("\n")
|
|
19
|
+
s.test_files = `git ls-files -- spec/*`.split("\n")
|
|
20
|
+
#s.test_files = Dir["spec/**/*"]
|
|
21
|
+
s.license = 'MIT'
|
|
22
|
+
|
|
23
|
+
s.add_runtime_dependency 'rails', '~> 4.0.0'
|
|
24
|
+
|
|
25
|
+
s.add_development_dependency 'factory_girl_rails'
|
|
26
|
+
s.add_development_dependency 'sqlite3'
|
|
27
|
+
s.add_development_dependency 'rspec-rails', '~> 2.0'
|
|
28
|
+
s.add_runtime_dependency 'ancestry'
|
|
29
|
+
s.add_runtime_dependency 'carrierwave'
|
|
30
|
+
s.add_runtime_dependency 'rubyzip'#, '< 1.0.0'#, :require => 'zip/zip'
|
|
31
31
|
end
|
data/spec/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: repository-manager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yves Baumann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 4.0.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 4.0.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: factory_girl_rails
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|