facetalker 0.1.0 → 0.2.0
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 +4 -4
- data/MIT-LICENSE +20 -0
- data/Rakefile +37 -1
- data/app/assets/javascripts/facetalker/application.js +13 -0
- data/app/assets/stylesheets/facetalker/application.css +15 -0
- data/app/controllers/facetalker/application_controller.rb +4 -0
- data/app/helpers/facetalker/application_helper.rb +4 -0
- data/app/views/layouts/facetalker/application.html.erb +14 -0
- data/config/routes.rb +2 -0
- data/lib/facetalker/engine.rb +5 -0
- data/lib/facetalker/version.rb +1 -1
- data/lib/facetalker.rb +1 -1
- data/lib/tasks/facetalker_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/facetalker_test.rb +7 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +20 -0
- metadata +90 -30
- data/.gitignore +0 -9
- data/.travis.yml +0 -3
- data/CODE_OF_CONDUCT.md +0 -13
- data/Gemfile +0 -4
- data/LICENSE.txt +0 -21
- data/README.md +0 -47
- data/bin/console +0 -14
- data/bin/setup +0 -7
- data/facetalker.gemspec +0 -32
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
|
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
|
9
|
+
|
|
10
|
+
# Make sure the secrets in this file are kept private
|
|
11
|
+
# if you're sharing your code publicly.
|
|
12
|
+
|
|
13
|
+
development:
|
|
14
|
+
secret_key_base: a064a99dbb2f09da7ff44a84527a4a3da34c3e14fdc22d30729e6990031072abc4d1590227f7391d0dcb497bb8f917b0da36448005ca878880fe4e8d21756ac4
|
|
15
|
+
|
|
16
|
+
test:
|
|
17
|
+
secret_key_base: 32ce9c8e0c9051e9783c3e652aad6bbdc48facee3cb8191b2c06deda27f729c196826f63eeafead9271a717e3cf3e022855d7d60f1b5fe3e98e58f5b6a99a830
|
|
18
|
+
|
|
19
|
+
# Do not keep production secrets in the repository,
|
|
20
|
+
# instead read values from the environment.
|
|
21
|
+
production:
|
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/404.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
63
|
+
</div>
|
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</body>
|
|
67
|
+
</html>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/422.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
63
|
+
</div>
|
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</body>
|
|
67
|
+
</html>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/500.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
62
|
+
</div>
|
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
64
|
+
</div>
|
|
65
|
+
</body>
|
|
66
|
+
</html>
|
|
File without changes
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Configure Rails Environment
|
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
|
3
|
+
|
|
4
|
+
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
|
|
5
|
+
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
|
|
6
|
+
ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
|
|
7
|
+
require "rails/test_help"
|
|
8
|
+
|
|
9
|
+
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
|
10
|
+
# to be shown.
|
|
11
|
+
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
|
|
12
|
+
|
|
13
|
+
# Load support files
|
|
14
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
15
|
+
|
|
16
|
+
# Load fixtures from the engine
|
|
17
|
+
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
|
18
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
|
19
|
+
ActiveSupport::TestCase.fixtures :all
|
|
20
|
+
end
|
metadata
CHANGED
|
@@ -1,43 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: facetalker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yamato
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2015-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: rails
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
20
|
-
type: :
|
|
19
|
+
version: 4.2.1
|
|
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:
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: rake
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '10.0'
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '10.0'
|
|
26
|
+
version: 4.2.1
|
|
41
27
|
description: 'FUNNY GEM: She is someone who just say hello to you, anytime, anywhere.'
|
|
42
28
|
email:
|
|
43
29
|
- wonka.bm@gmail.com
|
|
@@ -45,18 +31,55 @@ executables: []
|
|
|
45
31
|
extensions: []
|
|
46
32
|
extra_rdoc_files: []
|
|
47
33
|
files:
|
|
48
|
-
-
|
|
49
|
-
- ".travis.yml"
|
|
50
|
-
- CODE_OF_CONDUCT.md
|
|
51
|
-
- Gemfile
|
|
52
|
-
- LICENSE.txt
|
|
53
|
-
- README.md
|
|
34
|
+
- MIT-LICENSE
|
|
54
35
|
- Rakefile
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
- facetalker.
|
|
36
|
+
- app/assets/javascripts/facetalker/application.js
|
|
37
|
+
- app/assets/stylesheets/facetalker/application.css
|
|
38
|
+
- app/controllers/facetalker/application_controller.rb
|
|
39
|
+
- app/helpers/facetalker/application_helper.rb
|
|
40
|
+
- app/views/layouts/facetalker/application.html.erb
|
|
41
|
+
- config/routes.rb
|
|
58
42
|
- lib/facetalker.rb
|
|
43
|
+
- lib/facetalker/engine.rb
|
|
59
44
|
- lib/facetalker/version.rb
|
|
45
|
+
- lib/tasks/facetalker_tasks.rake
|
|
46
|
+
- test/dummy/README.rdoc
|
|
47
|
+
- test/dummy/Rakefile
|
|
48
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
49
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
50
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
51
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
52
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
53
|
+
- test/dummy/bin/bundle
|
|
54
|
+
- test/dummy/bin/rails
|
|
55
|
+
- test/dummy/bin/rake
|
|
56
|
+
- test/dummy/bin/setup
|
|
57
|
+
- test/dummy/config.ru
|
|
58
|
+
- test/dummy/config/application.rb
|
|
59
|
+
- test/dummy/config/boot.rb
|
|
60
|
+
- test/dummy/config/database.yml
|
|
61
|
+
- test/dummy/config/environment.rb
|
|
62
|
+
- test/dummy/config/environments/development.rb
|
|
63
|
+
- test/dummy/config/environments/production.rb
|
|
64
|
+
- test/dummy/config/environments/test.rb
|
|
65
|
+
- test/dummy/config/initializers/assets.rb
|
|
66
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
67
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
|
68
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
69
|
+
- test/dummy/config/initializers/inflections.rb
|
|
70
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
71
|
+
- test/dummy/config/initializers/session_store.rb
|
|
72
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
73
|
+
- test/dummy/config/locales/en.yml
|
|
74
|
+
- test/dummy/config/routes.rb
|
|
75
|
+
- test/dummy/config/secrets.yml
|
|
76
|
+
- test/dummy/public/404.html
|
|
77
|
+
- test/dummy/public/422.html
|
|
78
|
+
- test/dummy/public/500.html
|
|
79
|
+
- test/dummy/public/favicon.ico
|
|
80
|
+
- test/facetalker_test.rb
|
|
81
|
+
- test/integration/navigation_test.rb
|
|
82
|
+
- test/test_helper.rb
|
|
60
83
|
homepage: https://github.com/Yama-to/facetalker.git
|
|
61
84
|
licenses:
|
|
62
85
|
- MIT
|
|
@@ -81,4 +104,41 @@ rubygems_version: 2.2.2
|
|
|
81
104
|
signing_key:
|
|
82
105
|
specification_version: 4
|
|
83
106
|
summary: You wanna talk with somebody just say hello? haha!
|
|
84
|
-
test_files:
|
|
107
|
+
test_files:
|
|
108
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
109
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
110
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
111
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
112
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
113
|
+
- test/dummy/bin/bundle
|
|
114
|
+
- test/dummy/bin/rails
|
|
115
|
+
- test/dummy/bin/rake
|
|
116
|
+
- test/dummy/bin/setup
|
|
117
|
+
- test/dummy/config/application.rb
|
|
118
|
+
- test/dummy/config/boot.rb
|
|
119
|
+
- test/dummy/config/database.yml
|
|
120
|
+
- test/dummy/config/environment.rb
|
|
121
|
+
- test/dummy/config/environments/development.rb
|
|
122
|
+
- test/dummy/config/environments/production.rb
|
|
123
|
+
- test/dummy/config/environments/test.rb
|
|
124
|
+
- test/dummy/config/initializers/assets.rb
|
|
125
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
126
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
|
127
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
128
|
+
- test/dummy/config/initializers/inflections.rb
|
|
129
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
130
|
+
- test/dummy/config/initializers/session_store.rb
|
|
131
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
132
|
+
- test/dummy/config/locales/en.yml
|
|
133
|
+
- test/dummy/config/routes.rb
|
|
134
|
+
- test/dummy/config/secrets.yml
|
|
135
|
+
- test/dummy/config.ru
|
|
136
|
+
- test/dummy/public/404.html
|
|
137
|
+
- test/dummy/public/422.html
|
|
138
|
+
- test/dummy/public/500.html
|
|
139
|
+
- test/dummy/public/favicon.ico
|
|
140
|
+
- test/dummy/Rakefile
|
|
141
|
+
- test/dummy/README.rdoc
|
|
142
|
+
- test/facetalker_test.rb
|
|
143
|
+
- test/integration/navigation_test.rb
|
|
144
|
+
- test/test_helper.rb
|
data/.gitignore
DELETED
data/.travis.yml
DELETED
data/CODE_OF_CONDUCT.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Contributor Code of Conduct
|
|
2
|
-
|
|
3
|
-
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
|
4
|
-
|
|
5
|
-
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
|
6
|
-
|
|
7
|
-
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
|
8
|
-
|
|
9
|
-
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
|
10
|
-
|
|
11
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
|
12
|
-
|
|
13
|
-
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
DELETED
data/LICENSE.txt
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2015 Yamato
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|
data/README.md
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
# Facetalker
|
|
2
|
-
|
|
3
|
-
FUNNY GEM: I am someone who only say hello to you, haha!
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
Add this line to your application's Gemfile:
|
|
8
|
-
|
|
9
|
-
```ruby
|
|
10
|
-
gem 'facetalker'
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
And then execute:
|
|
14
|
-
|
|
15
|
-
$ bundle
|
|
16
|
-
|
|
17
|
-
Or install it yourself as:
|
|
18
|
-
|
|
19
|
-
$ gem install facetalker
|
|
20
|
-
|
|
21
|
-
## Usage
|
|
22
|
-
|
|
23
|
-
$ "StringObject".facer
|
|
24
|
-
|
|
25
|
-
or simply
|
|
26
|
-
|
|
27
|
-
$ facer("StringObject")
|
|
28
|
-
|
|
29
|
-
are result in
|
|
30
|
-
|
|
31
|
-
$ => サッ!彡( ´・ω・)p[ StringObject ]q
|
|
32
|
-
|
|
33
|
-
You can STRESS your NAME or other STRINGs in a quite simple way!!
|
|
34
|
-
|
|
35
|
-
## Development
|
|
36
|
-
|
|
37
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
38
|
-
|
|
39
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
40
|
-
|
|
41
|
-
## Contributing
|
|
42
|
-
|
|
43
|
-
1. Fork it ( https://github.com/[my-github-username]/facetalker/fork )
|
|
44
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
45
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
46
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
47
|
-
5. Create a new Pull Request
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "facetalker"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start
|
data/bin/setup
DELETED
data/facetalker.gemspec
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'facetalker/version'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "facetalker"
|
|
8
|
-
spec.version = Facetalker::VERSION
|
|
9
|
-
spec.authors = ["Yamato"]
|
|
10
|
-
spec.email = ["wonka.bm@gmail.com"]
|
|
11
|
-
|
|
12
|
-
spec.summary = %q{You wanna talk with somebody just say hello? haha!}
|
|
13
|
-
spec.description = %q{FUNNY GEM: She is someone who just say hello to you, anytime, anywhere.}
|
|
14
|
-
spec.homepage = "https://github.com/Yama-to/facetalker.git"
|
|
15
|
-
spec.license = "MIT"
|
|
16
|
-
|
|
17
|
-
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
|
18
|
-
# delete this section to allow pushing this gem to any host.
|
|
19
|
-
# if spec.respond_to?(:metadata)
|
|
20
|
-
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
|
21
|
-
# else
|
|
22
|
-
# raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
23
|
-
# end
|
|
24
|
-
|
|
25
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
26
|
-
spec.bindir = "exe"
|
|
27
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
|
-
spec.require_paths = ["lib"]
|
|
29
|
-
|
|
30
|
-
spec.add_development_dependency "bundler", "~> 1.9"
|
|
31
|
-
spec.add_development_dependency "rake", "~> 10.0"
|
|
32
|
-
end
|