├── Gemfile
├── Gemfile.lock
├── README.rdoc
├── Rakefile
├── app
├── assets
│ ├── images
│ │ └── rails.png
│ ├── javascripts
│ │ └── application.js
│ └── stylesheets
│ │ └── application.css
├── controllers
│ ├── application_controller.rb
│ └── twilio_controller.rb
├── helpers
│ └── application_helper.rb
└── views
│ ├── layouts
│ └── application.html.erb
│ └── twilio
│ └── process_sms.xml.erb
├── config.ru
├── config
├── application.rb
├── boot.rb
├── database.yml
├── environment.rb
├── environments
│ ├── development.rb
│ ├── production.rb
│ └── test.rb
├── initializers
│ ├── backtrace_silencers.rb
│ ├── inflections.rb
│ ├── mime_types.rb
│ ├── secret_token.rb
│ ├── session_store.rb
│ ├── twilio_config.rb
│ └── wrap_parameters.rb
├── locales
│ └── en.yml
└── routes.rb
├── db
└── seeds.rb
├── doc
└── README_FOR_APP
├── public
├── 404.html
├── 422.html
├── 500.html
├── favicon.ico
├── index.html
└── robots.txt
├── script
└── rails
└── test
├── performance
└── browsing_test.rb
└── test_helper.rb
/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | gem 'rails', '3.2.1'
4 |
5 | # Bundle edge Rails instead:
6 | # gem 'rails', :git => 'git://github.com/rails/rails.git'
7 |
8 | gem 'pg'
9 |
10 |
11 | # Gems used only for assets and not required
12 | # in production environments by default.
13 | group :assets do
14 | gem 'sass-rails', '~> 3.2.3'
15 | gem 'coffee-rails', '~> 3.2.1'
16 |
17 | # See https://github.com/sstephenson/execjs#readme for more supported runtimes
18 | # gem 'therubyracer'
19 |
20 | gem 'uglifier', '>= 1.0.3'
21 | end
22 |
23 | gem 'jquery-rails'
24 |
25 | # To use ActiveModel has_secure_password
26 | # gem 'bcrypt-ruby', '~> 3.0.0'
27 |
28 | # To use Jbuilder templates for JSON
29 | # gem 'jbuilder'
30 |
31 | # Use unicorn as the web server
32 | # gem 'unicorn'
33 |
34 | # Deploy with Capistrano
35 | # gem 'capistrano'
36 |
37 | # To use debugger
38 | # gem 'ruby-debug19', :require => 'ruby-debug'
39 |
40 | gem 'twilio-ruby'
41 |
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | actionmailer (3.2.1)
5 | actionpack (= 3.2.1)
6 | mail (~> 2.4.0)
7 | actionpack (3.2.1)
8 | activemodel (= 3.2.1)
9 | activesupport (= 3.2.1)
10 | builder (~> 3.0.0)
11 | erubis (~> 2.7.0)
12 | journey (~> 1.0.1)
13 | rack (~> 1.4.0)
14 | rack-cache (~> 1.1)
15 | rack-test (~> 0.6.1)
16 | sprockets (~> 2.1.2)
17 | activemodel (3.2.1)
18 | activesupport (= 3.2.1)
19 | builder (~> 3.0.0)
20 | activerecord (3.2.1)
21 | activemodel (= 3.2.1)
22 | activesupport (= 3.2.1)
23 | arel (~> 3.0.0)
24 | tzinfo (~> 0.3.29)
25 | activeresource (3.2.1)
26 | activemodel (= 3.2.1)
27 | activesupport (= 3.2.1)
28 | activesupport (3.2.1)
29 | i18n (~> 0.6)
30 | multi_json (~> 1.0)
31 | arel (3.0.2)
32 | builder (3.0.0)
33 | coffee-rails (3.2.2)
34 | coffee-script (>= 2.2.0)
35 | railties (~> 3.2.0)
36 | coffee-script (2.2.0)
37 | coffee-script-source
38 | execjs
39 | coffee-script-source (1.2.0)
40 | erubis (2.7.0)
41 | execjs (1.3.0)
42 | multi_json (~> 1.0)
43 | hike (1.2.1)
44 | i18n (0.6.0)
45 | journey (1.0.3)
46 | jquery-rails (2.0.0)
47 | railties (>= 3.2.0.beta, < 5.0)
48 | thor (~> 0.14)
49 | json (1.6.5)
50 | jwt (0.1.4)
51 | json (>= 1.2.4)
52 | mail (2.4.1)
53 | i18n (>= 0.4.0)
54 | mime-types (~> 1.16)
55 | treetop (~> 1.4.8)
56 | mime-types (1.17.2)
57 | multi_json (1.1.0)
58 | pg (0.13.2)
59 | polyglot (0.3.3)
60 | rack (1.4.1)
61 | rack-cache (1.1)
62 | rack (>= 0.4)
63 | rack-ssl (1.3.2)
64 | rack
65 | rack-test (0.6.1)
66 | rack (>= 1.0)
67 | rails (3.2.1)
68 | actionmailer (= 3.2.1)
69 | actionpack (= 3.2.1)
70 | activerecord (= 3.2.1)
71 | activeresource (= 3.2.1)
72 | activesupport (= 3.2.1)
73 | bundler (~> 1.0)
74 | railties (= 3.2.1)
75 | railties (3.2.1)
76 | actionpack (= 3.2.1)
77 | activesupport (= 3.2.1)
78 | rack-ssl (~> 1.3.2)
79 | rake (>= 0.8.7)
80 | rdoc (~> 3.4)
81 | thor (~> 0.14.6)
82 | rake (0.9.2.2)
83 | rdoc (3.12)
84 | json (~> 1.4)
85 | sass (3.1.15)
86 | sass-rails (3.2.4)
87 | railties (~> 3.2.0)
88 | sass (>= 3.1.10)
89 | tilt (~> 1.3)
90 | sprockets (2.1.2)
91 | hike (~> 1.2)
92 | rack (~> 1.0)
93 | tilt (~> 1.1, != 1.3.0)
94 | thor (0.14.6)
95 | tilt (1.3.3)
96 | treetop (1.4.10)
97 | polyglot
98 | polyglot (>= 0.3.1)
99 | twilio-ruby (3.5.1)
100 | builder (>= 2.1.2)
101 | jwt (>= 0.1.2)
102 | multi_json (>= 1.0.3)
103 | tzinfo (0.3.31)
104 | uglifier (1.2.3)
105 | execjs (>= 0.3.0)
106 | multi_json (>= 1.0.2)
107 |
108 | PLATFORMS
109 | ruby
110 |
111 | DEPENDENCIES
112 | coffee-rails (~> 3.2.1)
113 | jquery-rails
114 | pg
115 | rails (= 3.2.1)
116 | sass-rails (~> 3.2.3)
117 | twilio-ruby
118 | uglifier (>= 1.0.3)
119 |
--------------------------------------------------------------------------------
/README.rdoc:
--------------------------------------------------------------------------------
1 | = Welcome to My Simple Twilio & Rails Demo
2 |
3 | Hey there! If you're interested in learning how to integrate Twilio[http://twilio.com/api] into your Rails application, you've got to the right place! This demo is currently quite simple, but over time we'll build it out to include more interesting scenarios that illustrate how easy it is to add voice and messaging to your app.
4 |
5 | Right now, the files that you'll want to peek at are:
6 | * Gemfile
7 | * config/initializers/twilio_config.rb
8 | * config/routes.rb
9 | * app/controllers/twilio_controller.rb
10 | * app/views/twilio/process_sms.xml.erb
11 |
12 | In order to get this demo running, you'll need to:
13 | 1. Deploy the app
14 | 2. Create a free Twilio account: http://twilio.com
15 | 3. Configure the Sandbox number to point to your SMS URL: http://yourdomain/twilio/process_sms
16 | 4. Send your app a text! Remember to prepend your text message with your Sandbox PIN.
17 |
18 | P.S. This app is optimized for deployment on Heroku and includes the Postgres database connector in its Gemfile. Swap that line out for something else (mysql2, etc.) if you're deploying elsewhere.
19 |
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
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 | CarterRails::Application.load_tasks
8 |
--------------------------------------------------------------------------------
/app/assets/images/rails.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/crtr0/twilio-rails-demo/62b77a959d7d7c33ef1e238863072b33e4367f3e/app/assets/images/rails.png
--------------------------------------------------------------------------------
/app/assets/javascripts/application.js:
--------------------------------------------------------------------------------
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 .
16 |
--------------------------------------------------------------------------------
/app/assets/stylesheets/application.css:
--------------------------------------------------------------------------------
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 | */
14 |
--------------------------------------------------------------------------------
/app/controllers/application_controller.rb:
--------------------------------------------------------------------------------
1 | class ApplicationController < ActionController::Base
2 | protect_from_forgery
3 | end
4 |
--------------------------------------------------------------------------------
/app/controllers/twilio_controller.rb:
--------------------------------------------------------------------------------
1 | class TwilioController < ApplicationController
2 |
3 | def process_sms
4 | @city = params[:FromCity].capitalize
5 | @state = params[:FromState]
6 | render 'process_sms.xml.erb', :content_type => 'text/xml'
7 | end
8 |
9 | end
10 |
--------------------------------------------------------------------------------
/app/helpers/application_helper.rb:
--------------------------------------------------------------------------------
1 | module ApplicationHelper
2 | end
3 |
--------------------------------------------------------------------------------
/app/views/layouts/application.html.erb:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CarterRails
5 | <%= stylesheet_link_tag "application", :media => "all" %>
6 | <%= javascript_include_tag "application" %>
7 | <%= csrf_meta_tags %>
8 |
9 |
10 |
11 | <%= yield %>
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/views/twilio/process_sms.xml.erb:
--------------------------------------------------------------------------------
1 |
2 | Hey, thanks for the text! Hmm... you wouldn't be from <%= @city %>, <%= @state %> by any chance?
3 |
4 |
--------------------------------------------------------------------------------
/config.ru:
--------------------------------------------------------------------------------
1 | # This file is used by Rack-based servers to start the application.
2 |
3 | require ::File.expand_path('../config/environment', __FILE__)
4 | run CarterRails::Application
5 |
--------------------------------------------------------------------------------
/config/application.rb:
--------------------------------------------------------------------------------
1 | require File.expand_path('../boot', __FILE__)
2 |
3 | require 'rails/all'
4 |
5 | if defined?(Bundler)
6 | # If you precompile assets before deploying to production, use this line
7 | Bundler.require(*Rails.groups(:assets => %w(development test)))
8 | # If you want your assets lazily compiled in production, use this line
9 | # Bundler.require(:default, :assets, Rails.env)
10 | end
11 |
12 | module CarterRails
13 | class Application < Rails::Application
14 | # Settings in config/environments/* take precedence over those specified here.
15 | # Application configuration should go into files in config/initializers
16 | # -- all .rb files in that directory are automatically loaded.
17 |
18 | # Custom directories with classes and modules you want to be autoloadable.
19 | # config.autoload_paths += %W(#{config.root}/extras)
20 |
21 | # Only load the plugins named here, in the order given (default is alphabetical).
22 | # :all can be used as a placeholder for all plugins not explicitly named.
23 | # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
24 |
25 | # Activate observers that should always be running.
26 | # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
27 |
28 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
29 | # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
30 | # config.time_zone = 'Central Time (US & Canada)'
31 |
32 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
33 | # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
34 | # config.i18n.default_locale = :de
35 |
36 | # Configure the default encoding used in templates for Ruby 1.9.
37 | config.encoding = "utf-8"
38 |
39 | # Configure sensitive parameters which will be filtered from the log file.
40 | config.filter_parameters += [:password]
41 |
42 | # Use SQL instead of Active Record's schema dumper when creating the database.
43 | # This is necessary if your schema can't be completely dumped by the schema dumper,
44 | # like if you have constraints or database-specific column types
45 | # config.active_record.schema_format = :sql
46 |
47 | # Enforce whitelist mode for mass assignment.
48 | # This will create an empty whitelist of attributes available for mass-assignment for all models
49 | # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
50 | # parameters by using an attr_accessible or attr_protected declaration.
51 | # config.active_record.whitelist_attributes = true
52 |
53 | # Enable the asset pipeline
54 | config.assets.enabled = true
55 |
56 | # Version of your assets, change this if you want to expire all your assets
57 | config.assets.version = '1.0'
58 | end
59 | end
60 |
--------------------------------------------------------------------------------
/config/boot.rb:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 |
3 | # Set up gems listed in the Gemfile.
4 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
5 |
6 | require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
7 |
--------------------------------------------------------------------------------
/config/database.yml:
--------------------------------------------------------------------------------
1 | development:
2 | adapter: postgresql
3 | database: carter-rails
4 | username: crabasa
5 | password:
6 | host: localhost
7 |
8 | # Warning: The database defined as "test" will be erased and
9 | # re-generated from your development database when you run "rake".
10 | # Do not set this db to the same as development or production.
11 | test:
12 | adapter: sqlite3
13 | database: db/test.sqlite3
14 | pool: 5
15 | timeout: 5000
16 |
17 | # Automatically handled by Heroku. Sweet!
18 | production:
19 |
20 |
--------------------------------------------------------------------------------
/config/environment.rb:
--------------------------------------------------------------------------------
1 | # Load the rails application
2 | require File.expand_path('../application', __FILE__)
3 |
4 | # Initialize the rails application
5 | CarterRails::Application.initialize!
6 |
--------------------------------------------------------------------------------
/config/environments/development.rb:
--------------------------------------------------------------------------------
1 | CarterRails::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
38 |
--------------------------------------------------------------------------------
/config/environments/production.rb:
--------------------------------------------------------------------------------
1 | CarterRails::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 Rails.root.join("public/assets")
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
68 |
--------------------------------------------------------------------------------
/config/environments/test.rb:
--------------------------------------------------------------------------------
1 | CarterRails::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
38 |
--------------------------------------------------------------------------------
/config/initializers/backtrace_silencers.rb:
--------------------------------------------------------------------------------
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!
8 |
--------------------------------------------------------------------------------
/config/initializers/inflections.rb:
--------------------------------------------------------------------------------
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
16 |
--------------------------------------------------------------------------------
/config/initializers/mime_types.rb:
--------------------------------------------------------------------------------
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
6 |
--------------------------------------------------------------------------------
/config/initializers/secret_token.rb:
--------------------------------------------------------------------------------
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 | CarterRails::Application.config.secret_token = 'a5dac0ebdafb2806e4763a8e93569648d77a6112ded42e0d0ad53766d3f879f58cc64889e0cf5124ab76989aea43d9fb0be9b389b2f03c8a35bf7a03d6df0a03'
8 |
--------------------------------------------------------------------------------
/config/initializers/session_store.rb:
--------------------------------------------------------------------------------
1 | # Be sure to restart your server when you modify this file.
2 |
3 | CarterRails::Application.config.session_store :cookie_store, key: '_carter-rails_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 | # CarterRails::Application.config.session_store :active_record_store
9 |
--------------------------------------------------------------------------------
/config/initializers/twilio_config.rb:
--------------------------------------------------------------------------------
1 | CarterRails::Application.config.account_sid = "YOUR SID HERE"
2 | CarterRails::Application.config.auth_token = "YOUR AUTH TOKEN HERE"
3 | CarterRails::Application.config.phone_number = "YOUR PHONE NUMBER HERE"
4 |
--------------------------------------------------------------------------------
/config/initializers/wrap_parameters.rb:
--------------------------------------------------------------------------------
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
15 |
--------------------------------------------------------------------------------
/config/locales/en.yml:
--------------------------------------------------------------------------------
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"
6 |
--------------------------------------------------------------------------------
/config/routes.rb:
--------------------------------------------------------------------------------
1 | CarterRails::Application.routes.draw do
2 |
3 | # The priority is based upon order of creation:
4 | # first created -> highest priority.
5 |
6 | # Sample of regular route:
7 | # match 'products/:id' => 'catalog#view'
8 | # Keep in mind you can assign values other than :controller and :action
9 |
10 | match 'twilio/process_sms' => 'twilio#process_sms'
11 |
12 | # Sample of named route:
13 | # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
14 | # This route can be invoked with purchase_url(:id => product.id)
15 |
16 | # Sample resource route (maps HTTP verbs to controller actions automatically):
17 | # resources :products
18 |
19 | # Sample resource route with options:
20 | # resources :products do
21 | # member do
22 | # get 'short'
23 | # post 'toggle'
24 | # end
25 | #
26 | # collection do
27 | # get 'sold'
28 | # end
29 | # end
30 |
31 |
32 | # Sample resource route with sub-resources:
33 | # resources :products do
34 | # resources :comments, :sales
35 | # resource :seller
36 | # end
37 |
38 | # Sample resource route with more complex sub-resources
39 | # resources :products do
40 | # resources :comments
41 | # resources :sales do
42 | # get 'recent', :on => :collection
43 | # end
44 | # end
45 |
46 | # Sample resource route within a namespace:
47 | # namespace :admin do
48 | # # Directs /admin/products/* to Admin::ProductsController
49 | # # (app/controllers/admin/products_controller.rb)
50 | # resources :products
51 | # end
52 |
53 | # You can have the root of your site routed with "root"
54 | # just remember to delete public/index.html.
55 | # root :to => 'welcome#index'
56 |
57 | # See how all your routes lay out with "rake routes"
58 |
59 | # This is a legacy wild controller route that's not recommended for RESTful applications.
60 | # Note: This route will make all actions in every controller accessible via GET requests.
61 | # match ':controller(/:action(/:id))(.:format)'
62 | end
63 |
--------------------------------------------------------------------------------
/db/seeds.rb:
--------------------------------------------------------------------------------
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)
8 |
--------------------------------------------------------------------------------
/doc/README_FOR_APP:
--------------------------------------------------------------------------------
1 | Use this README file to introduce your application and point to useful places in the API for learning more.
2 | Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
3 |
--------------------------------------------------------------------------------
/public/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | The page you were looking for doesn't exist (404)
5 |
17 |
18 |
19 |
20 |
21 |
22 |
The page you were looking for doesn't exist.
23 |
You may have mistyped the address or the page may have moved.
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/public/422.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | The change you wanted was rejected (422)
5 |
17 |
18 |
19 |
20 |
21 |
22 |
The change you wanted was rejected.
23 |
Maybe you tried to change something you didn't have access to.
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/public/500.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | We're sorry, but something went wrong (500)
5 |
17 |
18 |
19 |
20 |
21 |
22 |
We're sorry, but something went wrong.
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/crtr0/twilio-rails-demo/62b77a959d7d7c33ef1e238863072b33e4367f3e/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Twilio on Rails: w00t!
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2 | #
3 | # To ban all spiders from the entire site uncomment the next two lines:
4 | # User-Agent: *
5 | # Disallow: /
6 |
--------------------------------------------------------------------------------
/script/rails:
--------------------------------------------------------------------------------
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'
7 |
--------------------------------------------------------------------------------
/test/performance/browsing_test.rb:
--------------------------------------------------------------------------------
1 | require 'test_helper'
2 | require 'rails/performance_test_help'
3 |
4 | class BrowsingTest < ActionDispatch::PerformanceTest
5 | # Refer to the documentation for all available options
6 | # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
7 | # :output => 'tmp/performance', :formats => [:flat] }
8 |
9 | def test_homepage
10 | get '/'
11 | end
12 | end
13 |
--------------------------------------------------------------------------------
/test/test_helper.rb:
--------------------------------------------------------------------------------
1 | ENV["RAILS_ENV"] = "test"
2 | require File.expand_path('../../config/environment', __FILE__)
3 | require 'rails/test_help'
4 |
5 | class ActiveSupport::TestCase
6 | # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7 | #
8 | # Note: You'll currently still have to declare fixtures explicitly in integration tests
9 | # -- they do not yet inherit this setting
10 | fixtures :all
11 |
12 | # Add more helper methods to be used by all tests here...
13 | end
14 |
--------------------------------------------------------------------------------