sophia 0.0.5 → 0.0.6
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 +7 -0
- data/.gitignore +26 -0
- data/Gemfile +8 -1
- data/Rakefile +3 -0
- data/lib/sophia.rb +1 -1
- data/lib/sophia/bibliotheke.rb +7 -0
- data/lib/sophia/version.rb +1 -1
- data/spec/bibliotheke_spec.rb +10 -0
- data/spec/lexico_spec.rb +4 -3
- metadata +10 -9
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 36c0a8ac29372d13d9260e8c130e40125718cf6d
|
|
4
|
+
data.tar.gz: ee747739634b2e4cfbd9704805f43bb7a27c356d
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 99a8a7215928cd2438c59488ed84bc46f201a5832dbbfec2e3ba496cf3fadbfd2d535bb3d365329935a8739d31feefcaf44f9e566b51d7e476e5669a61ea5ddf
|
|
7
|
+
data.tar.gz: 56ef95e47e49277377b5ff6a1a6a1262c17841bdc2ea8b803296452c009e9db1fbcc7301522e696fee7d5c8bf120f27f9186354776890ea218288d685b13744a
|
data/.gitignore
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
.bundle
|
|
4
4
|
.config
|
|
5
5
|
.yardoc
|
|
6
|
+
.rspec
|
|
7
|
+
.rvmrc
|
|
6
8
|
Gemfile.lock
|
|
7
9
|
InstalledFiles
|
|
8
10
|
_yardoc
|
|
@@ -15,3 +17,27 @@ spec/reports
|
|
|
15
17
|
test/tmp
|
|
16
18
|
test/version_tmp
|
|
17
19
|
tmp
|
|
20
|
+
|
|
21
|
+
# Packages #
|
|
22
|
+
############
|
|
23
|
+
# it's better to unpack these files and commit the raw source
|
|
24
|
+
# git has its own built in compression methods
|
|
25
|
+
*.7z
|
|
26
|
+
*.dmg
|
|
27
|
+
*.gz
|
|
28
|
+
*.iso
|
|
29
|
+
*.jar
|
|
30
|
+
*.rar
|
|
31
|
+
*.tar
|
|
32
|
+
*.zip
|
|
33
|
+
|
|
34
|
+
# OS generated files #
|
|
35
|
+
######################
|
|
36
|
+
.DS_Store
|
|
37
|
+
.DS_Store?
|
|
38
|
+
._*
|
|
39
|
+
.Spotlight-V100
|
|
40
|
+
.Trashes
|
|
41
|
+
Icon?
|
|
42
|
+
ehthumbs.db
|
|
43
|
+
Thumbs.db
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
data/lib/sophia.rb
CHANGED
data/lib/sophia/version.rb
CHANGED
data/spec/lexico_spec.rb
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
require "spec_helper"
|
|
2
2
|
require "sophia/lexico"
|
|
3
3
|
|
|
4
|
-
# redirect output to return
|
|
5
|
-
def puts(o) o end
|
|
6
|
-
|
|
7
4
|
describe Sophia::Lexico do
|
|
8
5
|
|
|
9
6
|
it "say hello into terminal" do
|
|
@@ -13,4 +10,8 @@ describe Sophia::Lexico do
|
|
|
13
10
|
expect(message.downcase).to include 'hello'
|
|
14
11
|
end
|
|
15
12
|
|
|
13
|
+
pending "start Sophia in current directory"
|
|
14
|
+
|
|
15
|
+
pending "check if current directory have Sophia"
|
|
16
|
+
|
|
16
17
|
end
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sophia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.6
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Rafael Gumieri
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
11
|
+
date: 2013-03-05 00:00:00.000000000 Z
|
|
13
12
|
dependencies: []
|
|
14
13
|
description: sophia
|
|
15
14
|
email:
|
|
@@ -26,35 +25,37 @@ files:
|
|
|
26
25
|
- Rakefile
|
|
27
26
|
- bin/sophia
|
|
28
27
|
- lib/sophia.rb
|
|
28
|
+
- lib/sophia/bibliotheke.rb
|
|
29
29
|
- lib/sophia/lexico.rb
|
|
30
30
|
- lib/sophia/version.rb
|
|
31
31
|
- sophia.gemspec
|
|
32
|
+
- spec/bibliotheke_spec.rb
|
|
32
33
|
- spec/lexico_spec.rb
|
|
33
34
|
- spec/spec_helper.rb
|
|
34
35
|
homepage: http://sophia.gumieri.com
|
|
35
36
|
licenses: []
|
|
37
|
+
metadata: {}
|
|
36
38
|
post_install_message:
|
|
37
39
|
rdoc_options: []
|
|
38
40
|
require_paths:
|
|
39
41
|
- lib
|
|
40
42
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
43
|
requirements:
|
|
43
|
-
- -
|
|
44
|
+
- - '>='
|
|
44
45
|
- !ruby/object:Gem::Version
|
|
45
46
|
version: '0'
|
|
46
47
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
47
|
-
none: false
|
|
48
48
|
requirements:
|
|
49
|
-
- -
|
|
49
|
+
- - '>='
|
|
50
50
|
- !ruby/object:Gem::Version
|
|
51
51
|
version: '0'
|
|
52
52
|
requirements: []
|
|
53
53
|
rubyforge_project:
|
|
54
|
-
rubygems_version:
|
|
54
|
+
rubygems_version: 2.0.0.rc.2
|
|
55
55
|
signing_key:
|
|
56
|
-
specification_version:
|
|
56
|
+
specification_version: 4
|
|
57
57
|
summary: A beautiful librarian
|
|
58
58
|
test_files:
|
|
59
|
+
- spec/bibliotheke_spec.rb
|
|
59
60
|
- spec/lexico_spec.rb
|
|
60
61
|
- spec/spec_helper.rb
|