rate_limiter 0.0.3 → 0.0.4

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.
Files changed (51) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile.lock +78 -8
  3. data/lib/rate_limiter/version.rb +1 -1
  4. data/rate_limiter.gemspec +10 -3
  5. data/spec/dummy/Rakefile +7 -0
  6. data/spec/dummy/app/assets/images/rails.png +0 -0
  7. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  8. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  9. data/spec/dummy/app/controllers/application_controller.rb +7 -0
  10. data/spec/dummy/app/controllers/messages_controller.rb +75 -0
  11. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  12. data/spec/dummy/app/mailers/.gitkeep +0 -0
  13. data/spec/dummy/app/models/message.rb +5 -0
  14. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  15. data/spec/dummy/app/views/messages/_form.html.erb +22 -0
  16. data/spec/dummy/app/views/messages/_message.html.erb +8 -0
  17. data/spec/dummy/app/views/messages/edit.html.erb +3 -0
  18. data/spec/dummy/app/views/messages/index.html.erb +6 -0
  19. data/spec/dummy/app/views/messages/new.html.erb +3 -0
  20. data/spec/dummy/app/views/messages/show.html.erb +4 -0
  21. data/spec/dummy/config/application.rb +70 -0
  22. data/spec/dummy/config/boot.rb +11 -0
  23. data/spec/dummy/config/database.yml +25 -0
  24. data/spec/dummy/config/environment.rb +5 -0
  25. data/spec/dummy/config/environments/development.rb +37 -0
  26. data/spec/dummy/config/environments/production.rb +67 -0
  27. data/spec/dummy/config/environments/test.rb +37 -0
  28. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/spec/dummy/config/initializers/inflections.rb +15 -0
  30. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  31. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  32. data/spec/dummy/config/initializers/session_store.rb +8 -0
  33. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/spec/dummy/config/locales/en.yml +5 -0
  35. data/spec/dummy/config/routes.rb +5 -0
  36. data/spec/dummy/config.ru +4 -0
  37. data/spec/dummy/db/migrate/20121213101512_create_messages.rb +21 -0
  38. data/spec/dummy/db/schema.rb +33 -0
  39. data/spec/dummy/db/seeds.rb +7 -0
  40. data/spec/dummy/lib/assets/.gitkeep +0 -0
  41. data/spec/dummy/lib/tasks/.gitkeep +0 -0
  42. data/spec/dummy/log/.gitkeep +0 -0
  43. data/spec/dummy/public/404.html +26 -0
  44. data/spec/dummy/public/422.html +26 -0
  45. data/spec/dummy/public/500.html +25 -0
  46. data/spec/dummy/public/favicon.ico +0 -0
  47. data/spec/dummy/script/rails +6 -0
  48. data/spec/rate_limiter/model_spec.rb +20 -0
  49. data/spec/{rate_limiter/rate_limiter_spec.rb → rate_limiter_spec.rb} +0 -0
  50. data/spec/spec_helper.rb +27 -3
  51. metadata +209 -9
data/.gitignore CHANGED
@@ -5,3 +5,7 @@ pkg/*
5
5
  ._*
6
6
  .idea/
7
7
  .redcar/
8
+ spec/dummy/tmp/
9
+ spec/dummy/db/*.sqlite3
10
+ spec/dummy/log/*.log
11
+
data/Gemfile.lock CHANGED
@@ -1,13 +1,16 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rate_limiter (0.0.1)
5
- activerecord (~> 3.0)
6
- railties (~> 3.0)
4
+ rate_limiter (0.0.3)
5
+ activerecord (~> 3.2)
6
+ railties (~> 3.2)
7
7
 
8
8
  GEM
9
9
  remote: http://rubygems.org/
10
10
  specs:
11
+ actionmailer (3.2.9)
12
+ actionpack (= 3.2.9)
13
+ mail (~> 2.4.4)
11
14
  actionpack (3.2.9)
12
15
  activemodel (= 3.2.9)
13
16
  activesupport (= 3.2.9)
@@ -26,18 +29,51 @@ GEM
26
29
  activesupport (= 3.2.9)
27
30
  arel (~> 3.0.2)
28
31
  tzinfo (~> 0.3.29)
32
+ activeresource (3.2.9)
33
+ activemodel (= 3.2.9)
34
+ activesupport (= 3.2.9)
29
35
  activesupport (3.2.9)
30
36
  i18n (~> 0.6)
31
37
  multi_json (~> 1.0)
38
+ addressable (2.3.2)
32
39
  arel (3.0.2)
40
+ bourne (1.1.2)
41
+ mocha (= 0.10.5)
33
42
  builder (3.0.4)
43
+ capybara (2.0.1)
44
+ mime-types (>= 1.16)
45
+ nokogiri (>= 1.3.3)
46
+ rack (>= 1.0.0)
47
+ rack-test (>= 0.5.4)
48
+ selenium-webdriver (~> 2.0)
49
+ xpath (~> 1.0.0)
50
+ childprocess (0.3.6)
51
+ ffi (~> 1.0, >= 1.0.6)
52
+ database_cleaner (0.9.1)
34
53
  diff-lcs (1.1.3)
35
54
  erubis (2.7.0)
55
+ ffi (1.2.0)
36
56
  hike (1.2.1)
37
57
  i18n (0.6.1)
38
58
  journey (1.0.4)
59
+ jquery-rails (2.1.4)
60
+ railties (>= 3.0, < 5.0)
61
+ thor (>= 0.14, < 2.0)
39
62
  json (1.7.5)
63
+ libwebsocket (0.1.7.1)
64
+ addressable
65
+ websocket
66
+ mail (2.4.4)
67
+ i18n (>= 0.4.0)
68
+ mime-types (~> 1.16)
69
+ treetop (~> 1.4.8)
70
+ metaclass (0.0.1)
71
+ mime-types (1.19)
72
+ mocha (0.10.5)
73
+ metaclass (~> 0.0.1)
40
74
  multi_json (1.5.0)
75
+ nokogiri (1.5.5)
76
+ polyglot (0.3.3)
41
77
  rack (1.4.1)
42
78
  rack-cache (1.2)
43
79
  rack (>= 0.4)
@@ -45,6 +81,14 @@ GEM
45
81
  rack
46
82
  rack-test (0.6.2)
47
83
  rack (>= 1.0)
84
+ rails (3.2.9)
85
+ actionmailer (= 3.2.9)
86
+ actionpack (= 3.2.9)
87
+ activerecord (= 3.2.9)
88
+ activeresource (= 3.2.9)
89
+ activesupport (= 3.2.9)
90
+ bundler (~> 1.0)
91
+ railties (= 3.2.9)
48
92
  railties (3.2.9)
49
93
  actionpack (= 3.2.9)
50
94
  activesupport (= 3.2.9)
@@ -55,26 +99,52 @@ GEM
55
99
  rake (10.0.2)
56
100
  rdoc (3.12)
57
101
  json (~> 1.4)
58
- rspec (2.12.0)
59
- rspec-core (~> 2.12.0)
60
- rspec-expectations (~> 2.12.0)
61
- rspec-mocks (~> 2.12.0)
62
102
  rspec-core (2.12.1)
63
103
  rspec-expectations (2.12.0)
64
104
  diff-lcs (~> 1.1.3)
65
105
  rspec-mocks (2.12.0)
106
+ rspec-rails (2.12.0)
107
+ actionpack (>= 3.0)
108
+ activesupport (>= 3.0)
109
+ railties (>= 3.0)
110
+ rspec-core (~> 2.12.0)
111
+ rspec-expectations (~> 2.12.0)
112
+ rspec-mocks (~> 2.12.0)
113
+ rubyzip (0.9.9)
114
+ selenium-webdriver (2.27.2)
115
+ childprocess (>= 0.2.5)
116
+ libwebsocket (~> 0.1.3)
117
+ multi_json (~> 1.0)
118
+ rubyzip
119
+ shoulda-matchers (1.4.2)
120
+ activesupport (>= 3.0.0)
121
+ bourne (~> 1.1.2)
66
122
  sprockets (2.2.2)
67
123
  hike (~> 1.2)
68
124
  multi_json (~> 1.0)
69
125
  rack (~> 1.0)
70
126
  tilt (~> 1.1, != 1.3.0)
127
+ sqlite3 (1.3.6)
71
128
  thor (0.16.0)
72
129
  tilt (1.3.3)
130
+ treetop (1.4.12)
131
+ polyglot
132
+ polyglot (>= 0.3.1)
73
133
  tzinfo (0.3.35)
134
+ websocket (1.0.4)
135
+ xpath (1.0.0)
136
+ nokogiri (~> 1.3)
74
137
 
75
138
  PLATFORMS
76
139
  ruby
77
140
 
78
141
  DEPENDENCIES
142
+ capybara
143
+ database_cleaner
144
+ jquery-rails
145
+ rails (~> 3.2)
146
+ rake
79
147
  rate_limiter!
80
- rspec
148
+ rspec-rails
149
+ shoulda-matchers
150
+ sqlite3
@@ -1,3 +1,3 @@
1
1
  module RateLimiter
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
data/rate_limiter.gemspec CHANGED
@@ -18,8 +18,15 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ['lib']
20
20
 
21
- s.add_dependency 'railties', '~> 3.0'
22
- s.add_dependency 'activerecord', '~> 3.0'
21
+ s.add_dependency 'railties', '~> 3.2'
22
+ s.add_dependency 'activerecord', '~> 3.2'
23
23
 
24
- s.add_development_dependency 'rspec'
24
+ s.add_development_dependency 'capybara'
25
+ s.add_development_dependency 'database_cleaner'
26
+ s.add_development_dependency 'jquery-rails'
27
+ s.add_development_dependency 'rake'
28
+ s.add_development_dependency 'rails', '~> 3.2'
29
+ s.add_development_dependency 'rspec-rails'
30
+ s.add_development_dependency 'shoulda-matchers'
31
+ s.add_development_dependency 'sqlite3'
25
32
  end
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,7 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+
4
+ def current_user
5
+ 'Test User'
6
+ end
7
+ end
@@ -0,0 +1,75 @@
1
+ class MessagesController < ApplicationController
2
+ def index
3
+ @messages = Message.all
4
+ end
5
+
6
+ def show
7
+ @message = Message.where(:id => params[:id]).first
8
+
9
+ if @message.nil?
10
+ flash[:error] = 'Could not find the specified message.'
11
+
12
+ redirect_to messages_url
13
+ end
14
+ end
15
+
16
+ def new
17
+ @message = Message.new
18
+ end
19
+
20
+ def create
21
+ @message = Message.new(params[:message])
22
+
23
+ @message.ip_address = request.remote_ip
24
+
25
+ if @message.save
26
+ flash[:success] = 'Message has been saved.'
27
+
28
+ redirect_to messages_url
29
+ else
30
+ render 'new'
31
+ end
32
+ end
33
+
34
+ def edit
35
+ @message = Message.where(:id => params[:id]).first
36
+
37
+ if @message.nil?
38
+ flash[:error] = 'Could not find the specified message.'
39
+
40
+ redirect_to messages_url
41
+ end
42
+ end
43
+
44
+ def update
45
+ @message = Message.where(:id => params[:id]).first
46
+
47
+ if @message.nil?
48
+ flash[:error] = 'Could not find the specified message.'
49
+
50
+ redirect_to messages_url
51
+ end
52
+
53
+ if @message.update_attributes(params[:message])
54
+ flash[:success] = 'Message has been updated.'
55
+
56
+ redirect_to messages_url
57
+ else
58
+ render 'edit'
59
+ end
60
+ end
61
+
62
+ def destroy
63
+ @message = Message.where(:id => params[:id]).first
64
+
65
+ if @message.nil?
66
+ flash[:error] = 'Could not find the specified message.'
67
+
68
+ redirect_to messages_url
69
+ end
70
+
71
+ @message.destroy
72
+
73
+ redirect_to messages_url
74
+ end
75
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
File without changes
@@ -0,0 +1,5 @@
1
+ class Message < ActiveRecord::Base
2
+ attr_accessible :first_name, :last_name, :subject, :body, :ip_address
3
+
4
+ rate_limit :on => :ip_address, :interval => 1.minute
5
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+ <div id="nav">
11
+ <%= link_to 'Home', root_path %> | <%= link_to 'New Message', new_message_path %>
12
+ </div>
13
+ <%= yield %>
14
+ </body>
15
+ </html>
@@ -0,0 +1,22 @@
1
+ <%= form_for @message do |f| %>
2
+ <fieldset>
3
+ <legend><%= @message.persisted? ? 'Edit Message' : 'New Message' %></legend>
4
+ <div>
5
+ <%= f.label :first_name %>
6
+ <%= f.text_field :first_name %>
7
+ </div>
8
+ <div>
9
+ <%= f.label :last_name %>
10
+ <%= f.text_field :last_name %>
11
+ </div>
12
+ <div>
13
+ <%= f.label :subject %>
14
+ <%= f.text_field :subject %>
15
+ </div>
16
+ <div>
17
+ <%= f.label :body %>
18
+ <%= f.text_area :body %>
19
+ </div>
20
+ </fieldset>
21
+ <%= f.submit %>
22
+ <% end %>
@@ -0,0 +1,8 @@
1
+ <div id="message-<%= message.id %>" class="message">
2
+ <h2 class="message-subject"><%= link_to message.subject, message_path(message) %></h2>
3
+ <h3 class="message-user"><%= message.first_name %> <%= message.last_name %></h3>
4
+ <div class="message-body"><%= message.body %></div>
5
+ <div class="message-ip-address">posted from <%= message.ip_address %></div>
6
+ <div class="message-date">posted on <%= message.created_at %></div>
7
+ <div class="message-controls"><%= link_to 'Edit Message', edit_message_path(message) %> | <%= link_to 'Delete Message', message_path(message), :method => :delete, :data => { :confirm => 'Are you sure you want to delete this message?' } %></div>
8
+ </div>
@@ -0,0 +1,3 @@
1
+ <div id="edit-message">
2
+ <%= render 'form' %>
3
+ </div>
@@ -0,0 +1,6 @@
1
+ <div id="messages">
2
+ <h1>Messages</h1>
3
+ <% @messages.each do |message| %>
4
+ <%= render 'message', :message => message %>
5
+ <% end %>
6
+ </div>
@@ -0,0 +1,3 @@
1
+ <div id="new-message">
2
+ <%= render 'form' %>
3
+ </div>
@@ -0,0 +1,4 @@
1
+ <div id="messages">
2
+ <h1>Message</h1>
3
+ <%= render 'message', :message => @message %>
4
+ </div>
@@ -0,0 +1,70 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "active_resource/railtie"
8
+ require "sprockets/railtie"
9
+ # require "rails/test_unit/railtie"
10
+
11
+ if defined?(Bundler)
12
+ # If you precompile assets before deploying to production, use this line
13
+ Bundler.require(*Rails.groups(:assets => %w(development test)))
14
+ # If you want your assets lazily compiled in production, use this line
15
+ # Bundler.require(:default, :assets, Rails.env)
16
+ end
17
+
18
+ require 'rate_limiter'
19
+
20
+ module Dummy
21
+ class Application < Rails::Application
22
+ # Settings in config/environments/* take precedence over those specified here.
23
+ # Application configuration should go into files in config/initializers
24
+ # -- all .rb files in that directory are automatically loaded.
25
+
26
+ # Custom directories with classes and modules you want to be autoloadable.
27
+ # config.autoload_paths += %W(#{config.root}/extras)
28
+
29
+ # Only load the plugins named here, in the order given (default is alphabetical).
30
+ # :all can be used as a placeholder for all plugins not explicitly named.
31
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
32
+
33
+ # Activate observers that should always be running.
34
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
35
+
36
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
37
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
38
+ config.time_zone = 'Central Time (US & Canada)'
39
+
40
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
41
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
42
+ # config.i18n.default_locale = :de
43
+
44
+ # Configure the default encoding used in templates for Ruby 1.9.
45
+ config.encoding = "utf-8"
46
+
47
+ # Configure sensitive parameters which will be filtered from the log file.
48
+ config.filter_parameters += [:password]
49
+
50
+ # Enable escaping HTML in JSON.
51
+ config.active_support.escape_html_entities_in_json = true
52
+
53
+ # Use SQL instead of Active Record's schema dumper when creating the database.
54
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
55
+ # like if you have constraints or database-specific column types
56
+ # config.active_record.schema_format = :sql
57
+
58
+ # Enforce whitelist mode for mass assignment.
59
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
60
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
61
+ # parameters by using an attr_accessible or attr_protected declaration.
62
+ config.active_record.whitelist_attributes = true
63
+
64
+ # Enable the asset pipeline
65
+ config.assets.enabled = true
66
+
67
+ # Version of your assets, change this if you want to expire all your assets
68
+ config.assets.version = '1.0'
69
+ end
70
+ end
@@ -0,0 +1,11 @@
1
+ require 'rubygems'
2
+
3
+ gemfile = ENV['BUNDLE_GEMFILE'] || File.expand_path('../../../../Gemfile', __FILE__)
4
+
5
+ if File.exist?(gemfile)
6
+ ENV['BUNDLE_GEMFILE'] = gemfile
7
+ require 'bundler'
8
+ Bundler.setup
9
+ end
10
+
11
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'fc8bbfa63f2ba523f8ec445135874572a62f5c201a28742f3aa992efc91a51ce8d35eb31495883571d85116bcca6879c21bad76bf7dec3be862e89f82c29b362'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,5 @@
1
+ Dummy::Application.routes.draw do
2
+ resources :messages
3
+
4
+ root :to => 'messages#index'
5
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,21 @@
1
+ class CreateMessages < ActiveRecord::Migration
2
+ def change
3
+ create_table :messages do |t|
4
+ t.string :first_name, :null => false, :default => ''
5
+ t.string :last_name, :null => false, :default => ''
6
+ t.string :subject, :null => false, :default => ''
7
+ t.text :body, :null => false, :default => ''
8
+ t.string :ip_address, :null => false, :default => ''
9
+ t.timestamps
10
+ end
11
+
12
+ change_table :messages do |t|
13
+ t.index :first_name
14
+ t.index :last_name
15
+ t.index :subject
16
+ t.index :ip_address
17
+ t.index :created_at
18
+ t.index :updated_at
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,33 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20121213101512) do
15
+
16
+ create_table "messages", :force => true do |t|
17
+ t.string "first_name", :default => "", :null => false
18
+ t.string "last_name", :default => "", :null => false
19
+ t.string "subject", :default => "", :null => false
20
+ t.text "body", :default => "", :null => false
21
+ t.string "ip_address", :default => "", :null => false
22
+ t.datetime "created_at", :null => false
23
+ t.datetime "updated_at", :null => false
24
+ end
25
+
26
+ add_index "messages", ["created_at"], :name => "index_messages_on_created_at"
27
+ add_index "messages", ["first_name"], :name => "index_messages_on_first_name"
28
+ add_index "messages", ["ip_address"], :name => "index_messages_on_ip_address"
29
+ add_index "messages", ["last_name"], :name => "index_messages_on_last_name"
30
+ add_index "messages", ["subject"], :name => "index_messages_on_subject"
31
+ add_index "messages", ["updated_at"], :name => "index_messages_on_updated_at"
32
+
33
+ end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
File without changes
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,20 @@
1
+ # encoding: utf-8
2
+ require 'spec_helper.rb'
3
+
4
+ describe RateLimiter::Model do
5
+ it 'prevents a model from being saved too soon' do
6
+ message1 = Message.new
7
+
8
+ message1.ip_address = '127.0.0.1'
9
+
10
+ message1.save
11
+
12
+ message2 = Message.new
13
+
14
+ message2.ip_address = '127.0.0.1'
15
+
16
+ message2.save
17
+
18
+ message2.errors.count.should eq(1)
19
+ end
20
+ end
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,30 @@
1
1
  # encoding: utf-8
2
2
 
3
- require 'rails/railtie'
4
- require 'active_record'
3
+ ENV['RAILS_ENV'] = 'test'
5
4
 
6
- require 'rate_limiter'
5
+ require File.expand_path('../dummy/config/environment.rb', __FILE__)
6
+ require 'rspec/rails'
7
+ require 'shoulda/matchers/integrations/rspec'
8
+ require 'capybara/rspec'
9
+ require 'database_cleaner'
10
+
11
+ Rails.backtrace_cleaner.remove_silencers!
12
+
13
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
14
+
15
+ RSpec.configure do |config|
16
+ config.mock_with :rspec
17
+
18
+ config.before :suite do
19
+ DatabaseCleaner.strategy = :transaction
20
+ DatabaseCleaner.clean_with :truncation
21
+ end
22
+
23
+ config.before :each do
24
+ DatabaseCleaner.start
25
+ end
26
+
27
+ config.after :each do
28
+ DatabaseCleaner.clean
29
+ end
30
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rate_limiter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-13 00:00:00.000000000 Z
12
+ date: 2012-12-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: '3.0'
21
+ version: '3.2'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: '3.0'
29
+ version: '3.2'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: activerecord
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -34,7 +34,7 @@ dependencies:
34
34
  requirements:
35
35
  - - ~>
36
36
  - !ruby/object:Gem::Version
37
- version: '3.0'
37
+ version: '3.2'
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -42,9 +42,121 @@ dependencies:
42
42
  requirements:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
- version: '3.0'
45
+ version: '3.2'
46
46
  - !ruby/object:Gem::Dependency
47
- name: rspec
47
+ name: capybara
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: database_cleaner
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: jquery-rails
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: rake
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: rails
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: '3.2'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: '3.2'
126
+ - !ruby/object:Gem::Dependency
127
+ name: rspec-rails
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: shoulda-matchers
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ! '>='
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ - !ruby/object:Gem::Dependency
159
+ name: sqlite3
48
160
  requirement: !ruby/object:Gem::Requirement
49
161
  none: false
50
162
  requirements:
@@ -80,7 +192,51 @@ files:
80
192
  - lib/rate_limiter/model.rb
81
193
  - lib/rate_limiter/version.rb
82
194
  - rate_limiter.gemspec
83
- - spec/rate_limiter/rate_limiter_spec.rb
195
+ - spec/dummy/Rakefile
196
+ - spec/dummy/app/assets/images/rails.png
197
+ - spec/dummy/app/assets/javascripts/application.js
198
+ - spec/dummy/app/assets/stylesheets/application.css
199
+ - spec/dummy/app/controllers/application_controller.rb
200
+ - spec/dummy/app/controllers/messages_controller.rb
201
+ - spec/dummy/app/helpers/application_helper.rb
202
+ - spec/dummy/app/mailers/.gitkeep
203
+ - spec/dummy/app/models/message.rb
204
+ - spec/dummy/app/views/layouts/application.html.erb
205
+ - spec/dummy/app/views/messages/_form.html.erb
206
+ - spec/dummy/app/views/messages/_message.html.erb
207
+ - spec/dummy/app/views/messages/edit.html.erb
208
+ - spec/dummy/app/views/messages/index.html.erb
209
+ - spec/dummy/app/views/messages/new.html.erb
210
+ - spec/dummy/app/views/messages/show.html.erb
211
+ - spec/dummy/config.ru
212
+ - spec/dummy/config/application.rb
213
+ - spec/dummy/config/boot.rb
214
+ - spec/dummy/config/database.yml
215
+ - spec/dummy/config/environment.rb
216
+ - spec/dummy/config/environments/development.rb
217
+ - spec/dummy/config/environments/production.rb
218
+ - spec/dummy/config/environments/test.rb
219
+ - spec/dummy/config/initializers/backtrace_silencers.rb
220
+ - spec/dummy/config/initializers/inflections.rb
221
+ - spec/dummy/config/initializers/mime_types.rb
222
+ - spec/dummy/config/initializers/secret_token.rb
223
+ - spec/dummy/config/initializers/session_store.rb
224
+ - spec/dummy/config/initializers/wrap_parameters.rb
225
+ - spec/dummy/config/locales/en.yml
226
+ - spec/dummy/config/routes.rb
227
+ - spec/dummy/db/migrate/20121213101512_create_messages.rb
228
+ - spec/dummy/db/schema.rb
229
+ - spec/dummy/db/seeds.rb
230
+ - spec/dummy/lib/assets/.gitkeep
231
+ - spec/dummy/lib/tasks/.gitkeep
232
+ - spec/dummy/log/.gitkeep
233
+ - spec/dummy/public/404.html
234
+ - spec/dummy/public/422.html
235
+ - spec/dummy/public/500.html
236
+ - spec/dummy/public/favicon.ico
237
+ - spec/dummy/script/rails
238
+ - spec/rate_limiter/model_spec.rb
239
+ - spec/rate_limiter_spec.rb
84
240
  - spec/spec_helper.rb
85
241
  homepage: https://github.com/seaneshbaugh/rate_limiter
86
242
  licenses: []
@@ -107,5 +263,49 @@ signing_key:
107
263
  specification_version: 3
108
264
  summary: Adds creation rate limiting to ActiveRecord models.
109
265
  test_files:
110
- - spec/rate_limiter/rate_limiter_spec.rb
266
+ - spec/dummy/Rakefile
267
+ - spec/dummy/app/assets/images/rails.png
268
+ - spec/dummy/app/assets/javascripts/application.js
269
+ - spec/dummy/app/assets/stylesheets/application.css
270
+ - spec/dummy/app/controllers/application_controller.rb
271
+ - spec/dummy/app/controllers/messages_controller.rb
272
+ - spec/dummy/app/helpers/application_helper.rb
273
+ - spec/dummy/app/mailers/.gitkeep
274
+ - spec/dummy/app/models/message.rb
275
+ - spec/dummy/app/views/layouts/application.html.erb
276
+ - spec/dummy/app/views/messages/_form.html.erb
277
+ - spec/dummy/app/views/messages/_message.html.erb
278
+ - spec/dummy/app/views/messages/edit.html.erb
279
+ - spec/dummy/app/views/messages/index.html.erb
280
+ - spec/dummy/app/views/messages/new.html.erb
281
+ - spec/dummy/app/views/messages/show.html.erb
282
+ - spec/dummy/config.ru
283
+ - spec/dummy/config/application.rb
284
+ - spec/dummy/config/boot.rb
285
+ - spec/dummy/config/database.yml
286
+ - spec/dummy/config/environment.rb
287
+ - spec/dummy/config/environments/development.rb
288
+ - spec/dummy/config/environments/production.rb
289
+ - spec/dummy/config/environments/test.rb
290
+ - spec/dummy/config/initializers/backtrace_silencers.rb
291
+ - spec/dummy/config/initializers/inflections.rb
292
+ - spec/dummy/config/initializers/mime_types.rb
293
+ - spec/dummy/config/initializers/secret_token.rb
294
+ - spec/dummy/config/initializers/session_store.rb
295
+ - spec/dummy/config/initializers/wrap_parameters.rb
296
+ - spec/dummy/config/locales/en.yml
297
+ - spec/dummy/config/routes.rb
298
+ - spec/dummy/db/migrate/20121213101512_create_messages.rb
299
+ - spec/dummy/db/schema.rb
300
+ - spec/dummy/db/seeds.rb
301
+ - spec/dummy/lib/assets/.gitkeep
302
+ - spec/dummy/lib/tasks/.gitkeep
303
+ - spec/dummy/log/.gitkeep
304
+ - spec/dummy/public/404.html
305
+ - spec/dummy/public/422.html
306
+ - spec/dummy/public/500.html
307
+ - spec/dummy/public/favicon.ico
308
+ - spec/dummy/script/rails
309
+ - spec/rate_limiter/model_spec.rb
310
+ - spec/rate_limiter_spec.rb
111
311
  - spec/spec_helper.rb