waitlist 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +27 -0
- data/app/assets/javascripts/waitlist/application.js +13 -0
- data/app/assets/stylesheets/waitlist/application.css +15 -0
- data/app/controllers/waitlist/application_controller.rb +4 -0
- data/app/controllers/waitlist/subscribers_controller.rb +20 -0
- data/app/helpers/waitlist/application_helper.rb +4 -0
- data/app/models/waitlist/subscriber.rb +6 -0
- data/app/views/layouts/waitlist/application.html.erb +14 -0
- data/app/views/waitlist/subscribers/new.html.erb +5 -0
- data/config/routes.rb +4 -0
- data/db/migrate/20140919201517_create_waitlist_subscribers.rb +8 -0
- data/lib/generators/waitlist/install/USAGE +13 -0
- data/lib/generators/waitlist/install/install_generator.rb +15 -0
- data/lib/tasks/waitlist_tasks.rake +4 -0
- data/lib/waitlist.rb +4 -0
- data/lib/waitlist/engine.rb +11 -0
- data/lib/waitlist/version.rb +3 -0
- data/spec/controllers/waitlist_subscribers_spec.rb +42 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/welcome_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/welcome/index.html.erb +0 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +27 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +78 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20140925215627_create_prelaunch_subscribers.prelaunch.rb +9 -0
- data/spec/dummy/db/schema.rb +22 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +244 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/generated_files/config/routes.rb +3 -0
- data/spec/lib/generators/install/install_generator_spec.rb +27 -0
- data/spec/models/subscriber_spec.rb +10 -0
- data/spec/rails_helper.rb +19 -0
- data/spec/routing/subscribers_routing_spec.rb +7 -0
- data/spec/spec_helper.rb +20 -0
- metadata +238 -0
@@ -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
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
# FIXME: Figure out why 'require' doesn't work
|
3
|
+
load File.dirname(__FILE__) + '/../../../../lib/generators/waitlist/install/install_generator.rb'
|
4
|
+
|
5
|
+
RSpec.describe Waitlist::InstallGenerator, type: :generator do
|
6
|
+
destination Rails.root + 'tmp/generated_files'
|
7
|
+
|
8
|
+
before do
|
9
|
+
prepare_destination
|
10
|
+
config_dir = File.join(destination_root, "config")
|
11
|
+
FileUtils.mkdir_p(config_dir)
|
12
|
+
File.open(File.join(config_dir, "routes.rb"), 'w') do |file|
|
13
|
+
file.write("TestApp::Application.routes.draw do\n")
|
14
|
+
file.write("end\n")
|
15
|
+
end
|
16
|
+
run_generator
|
17
|
+
end
|
18
|
+
describe "the migration" do
|
19
|
+
subject { file(Rails.root + 'db/migrate/create_waitlist_subscribers.waitlist.rb') }
|
20
|
+
|
21
|
+
it { is_expected.to be_a_migration }
|
22
|
+
end
|
23
|
+
describe "the routing entry" do
|
24
|
+
subject { file('config/routes.rb') }
|
25
|
+
it { is_expected.to contain(/mount Waitlist::Engine => "\/waitlist", as: "waitlist"/) }
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Waitlist::Subscriber do
|
4
|
+
describe '#email' do
|
5
|
+
it { should have_db_column(:email) }
|
6
|
+
it { should allow_value('valid.email@thegarage.us').for(:email) }
|
7
|
+
it { should_not allow_value("this isn't an email address").for(:email) }
|
8
|
+
it { should_not allow_value(nil).for(:email) }
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
2
|
+
ENV["RAILS_ENV"] ||= 'test'
|
3
|
+
require 'spec_helper'
|
4
|
+
require File.expand_path("../dummy/config/environment", __FILE__)
|
5
|
+
require 'rspec/rails'
|
6
|
+
require 'shoulda-matchers'
|
7
|
+
require 'ammeter'
|
8
|
+
|
9
|
+
require 'ammeter/init'
|
10
|
+
|
11
|
+
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
12
|
+
|
13
|
+
ActiveRecord::Migration.maintain_test_schema!
|
14
|
+
|
15
|
+
RSpec.configure do |config|
|
16
|
+
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
17
|
+
config.use_transactional_fixtures = true
|
18
|
+
config.infer_spec_type_from_file_location!
|
19
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe "subscribers routes" do
|
4
|
+
routes { Waitlist::Engine.routes }
|
5
|
+
specify { expect(get: 'subscribers/new').to route_to('waitlist/subscribers#new') }
|
6
|
+
specify { expect(post: 'subscribers').to route_to('waitlist/subscribers#create') }
|
7
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
2
|
+
|
3
|
+
RSpec.configure do |config|
|
4
|
+
config.expect_with :rspec do |expectations|
|
5
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
6
|
+
end
|
7
|
+
|
8
|
+
config.mock_with :rspec do |mocks|
|
9
|
+
mocks.verify_partial_doubles = true
|
10
|
+
end
|
11
|
+
|
12
|
+
config.filter_run :focus
|
13
|
+
config.run_all_when_everything_filtered = true
|
14
|
+
|
15
|
+
config.disable_monkey_patching!
|
16
|
+
|
17
|
+
config.default_formatter = 'doc' if config.files_to_run.one?
|
18
|
+
|
19
|
+
config.order = :random
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,238 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: waitlist
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- The Garage
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.1.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.1.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: email_validator
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sqlite3
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: shoulda-matchers
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: ammeter
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Pre-launch email waiting list
|
98
|
+
email:
|
99
|
+
executables: []
|
100
|
+
extensions: []
|
101
|
+
extra_rdoc_files: []
|
102
|
+
files:
|
103
|
+
- Rakefile
|
104
|
+
- app/assets/javascripts/waitlist/application.js
|
105
|
+
- app/assets/stylesheets/waitlist/application.css
|
106
|
+
- app/controllers/waitlist/application_controller.rb
|
107
|
+
- app/controllers/waitlist/subscribers_controller.rb
|
108
|
+
- app/helpers/waitlist/application_helper.rb
|
109
|
+
- app/models/waitlist/subscriber.rb
|
110
|
+
- app/views/layouts/waitlist/application.html.erb
|
111
|
+
- app/views/waitlist/subscribers/new.html.erb
|
112
|
+
- config/routes.rb
|
113
|
+
- db/migrate/20140919201517_create_waitlist_subscribers.rb
|
114
|
+
- lib/generators/waitlist/install/USAGE
|
115
|
+
- lib/generators/waitlist/install/install_generator.rb
|
116
|
+
- lib/tasks/waitlist_tasks.rake
|
117
|
+
- lib/waitlist.rb
|
118
|
+
- lib/waitlist/engine.rb
|
119
|
+
- lib/waitlist/version.rb
|
120
|
+
- spec/controllers/waitlist_subscribers_spec.rb
|
121
|
+
- spec/dummy/README.rdoc
|
122
|
+
- spec/dummy/Rakefile
|
123
|
+
- spec/dummy/app/assets/javascripts/application.js
|
124
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
125
|
+
- spec/dummy/app/controllers/application_controller.rb
|
126
|
+
- spec/dummy/app/controllers/welcome_controller.rb
|
127
|
+
- spec/dummy/app/helpers/application_helper.rb
|
128
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
129
|
+
- spec/dummy/app/views/welcome/index.html.erb
|
130
|
+
- spec/dummy/bin/bundle
|
131
|
+
- spec/dummy/bin/rails
|
132
|
+
- spec/dummy/bin/rake
|
133
|
+
- spec/dummy/config.ru
|
134
|
+
- spec/dummy/config/application.rb
|
135
|
+
- spec/dummy/config/boot.rb
|
136
|
+
- spec/dummy/config/database.yml
|
137
|
+
- spec/dummy/config/environment.rb
|
138
|
+
- spec/dummy/config/environments/development.rb
|
139
|
+
- spec/dummy/config/environments/production.rb
|
140
|
+
- spec/dummy/config/environments/test.rb
|
141
|
+
- spec/dummy/config/initializers/assets.rb
|
142
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
143
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
144
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
145
|
+
- spec/dummy/config/initializers/inflections.rb
|
146
|
+
- spec/dummy/config/initializers/mime_types.rb
|
147
|
+
- spec/dummy/config/initializers/session_store.rb
|
148
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
149
|
+
- spec/dummy/config/locales/en.yml
|
150
|
+
- spec/dummy/config/routes.rb
|
151
|
+
- spec/dummy/config/secrets.yml
|
152
|
+
- spec/dummy/db/development.sqlite3
|
153
|
+
- spec/dummy/db/migrate/20140925215627_create_prelaunch_subscribers.prelaunch.rb
|
154
|
+
- spec/dummy/db/schema.rb
|
155
|
+
- spec/dummy/db/test.sqlite3
|
156
|
+
- spec/dummy/log/development.log
|
157
|
+
- spec/dummy/public/404.html
|
158
|
+
- spec/dummy/public/422.html
|
159
|
+
- spec/dummy/public/500.html
|
160
|
+
- spec/dummy/public/favicon.ico
|
161
|
+
- spec/dummy/tmp/generated_files/config/routes.rb
|
162
|
+
- spec/lib/generators/install/install_generator_spec.rb
|
163
|
+
- spec/models/subscriber_spec.rb
|
164
|
+
- spec/rails_helper.rb
|
165
|
+
- spec/routing/subscribers_routing_spec.rb
|
166
|
+
- spec/spec_helper.rb
|
167
|
+
homepage: https://github.com/thegarage
|
168
|
+
licenses:
|
169
|
+
- MIT
|
170
|
+
metadata: {}
|
171
|
+
post_install_message:
|
172
|
+
rdoc_options: []
|
173
|
+
require_paths:
|
174
|
+
- lib
|
175
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - ">="
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
180
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
181
|
+
requirements:
|
182
|
+
- - ">="
|
183
|
+
- !ruby/object:Gem::Version
|
184
|
+
version: '0'
|
185
|
+
requirements: []
|
186
|
+
rubyforge_project:
|
187
|
+
rubygems_version: 2.2.2
|
188
|
+
signing_key:
|
189
|
+
specification_version: 4
|
190
|
+
summary: Pre-launch email waiting list
|
191
|
+
test_files:
|
192
|
+
- spec/controllers/waitlist_subscribers_spec.rb
|
193
|
+
- spec/dummy/app/assets/javascripts/application.js
|
194
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
195
|
+
- spec/dummy/app/controllers/application_controller.rb
|
196
|
+
- spec/dummy/app/controllers/welcome_controller.rb
|
197
|
+
- spec/dummy/app/helpers/application_helper.rb
|
198
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
199
|
+
- spec/dummy/app/views/welcome/index.html.erb
|
200
|
+
- spec/dummy/bin/bundle
|
201
|
+
- spec/dummy/bin/rails
|
202
|
+
- spec/dummy/bin/rake
|
203
|
+
- spec/dummy/config/application.rb
|
204
|
+
- spec/dummy/config/boot.rb
|
205
|
+
- spec/dummy/config/database.yml
|
206
|
+
- spec/dummy/config/environment.rb
|
207
|
+
- spec/dummy/config/environments/development.rb
|
208
|
+
- spec/dummy/config/environments/production.rb
|
209
|
+
- spec/dummy/config/environments/test.rb
|
210
|
+
- spec/dummy/config/initializers/assets.rb
|
211
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
212
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
213
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
214
|
+
- spec/dummy/config/initializers/inflections.rb
|
215
|
+
- spec/dummy/config/initializers/mime_types.rb
|
216
|
+
- spec/dummy/config/initializers/session_store.rb
|
217
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
218
|
+
- spec/dummy/config/locales/en.yml
|
219
|
+
- spec/dummy/config/routes.rb
|
220
|
+
- spec/dummy/config/secrets.yml
|
221
|
+
- spec/dummy/config.ru
|
222
|
+
- spec/dummy/db/development.sqlite3
|
223
|
+
- spec/dummy/db/migrate/20140925215627_create_prelaunch_subscribers.prelaunch.rb
|
224
|
+
- spec/dummy/db/schema.rb
|
225
|
+
- spec/dummy/db/test.sqlite3
|
226
|
+
- spec/dummy/log/development.log
|
227
|
+
- spec/dummy/public/404.html
|
228
|
+
- spec/dummy/public/422.html
|
229
|
+
- spec/dummy/public/500.html
|
230
|
+
- spec/dummy/public/favicon.ico
|
231
|
+
- spec/dummy/Rakefile
|
232
|
+
- spec/dummy/README.rdoc
|
233
|
+
- spec/dummy/tmp/generated_files/config/routes.rb
|
234
|
+
- spec/lib/generators/install/install_generator_spec.rb
|
235
|
+
- spec/models/subscriber_spec.rb
|
236
|
+
- spec/rails_helper.rb
|
237
|
+
- spec/routing/subscribers_routing_spec.rb
|
238
|
+
- spec/spec_helper.rb
|