trails 1.0.2 → 1.0.3

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 (49) hide show
  1. data/History.txt +4 -0
  2. data/Manifest.txt +45 -0
  3. data/README.txt +2 -4
  4. data/assets/layouts/default_layout.twiml.builder +4 -0
  5. data/bin/trails +0 -0
  6. data/lib/trails/test_helper.rb +127 -0
  7. data/lib/trails.rb +1 -1
  8. data/lib/twiliorest.rb +115 -0
  9. data/test/example/README +243 -0
  10. data/test/example/Rakefile +10 -0
  11. data/test/example/app/controllers/application_controller.rb +11 -0
  12. data/test/example/app/controllers/calls_controller.rb +8 -0
  13. data/test/example/app/helpers/application_helper.rb +3 -0
  14. data/test/example/app/helpers/calls_helper.rb +2 -0
  15. data/test/example/app/views/calls/index.html.erb +1 -0
  16. data/test/example/app/views/calls/index.twiml.builder +2 -0
  17. data/test/example/config/boot.rb +110 -0
  18. data/test/example/config/database.yml +22 -0
  19. data/test/example/config/environment.rb +43 -0
  20. data/test/example/config/environments/development.rb +17 -0
  21. data/test/example/config/environments/production.rb +28 -0
  22. data/test/example/config/environments/test.rb +28 -0
  23. data/test/example/config/initializers/backtrace_silencers.rb +7 -0
  24. data/test/example/config/initializers/inflections.rb +10 -0
  25. data/test/example/config/initializers/mime_types.rb +5 -0
  26. data/test/example/config/initializers/new_rails_defaults.rb +21 -0
  27. data/test/example/config/initializers/session_store.rb +15 -0
  28. data/test/example/config/locales/en.yml +5 -0
  29. data/test/example/config/routes.rb +43 -0
  30. data/test/example/config/twilio.yml +3 -0
  31. data/test/example/db/development.sqlite3 +0 -0
  32. data/test/example/db/schema.rb +14 -0
  33. data/test/example/db/seeds.rb +7 -0
  34. data/test/example/db/test.sqlite3 +0 -0
  35. data/test/example/doc/README_FOR_APP +2 -0
  36. data/test/example/script/about +4 -0
  37. data/test/example/script/console +3 -0
  38. data/test/example/script/dbconsole +3 -0
  39. data/test/example/script/destroy +3 -0
  40. data/test/example/script/generate +3 -0
  41. data/test/example/script/performance/benchmarker +3 -0
  42. data/test/example/script/performance/profiler +3 -0
  43. data/test/example/script/plugin +3 -0
  44. data/test/example/script/runner +3 -0
  45. data/test/example/script/server +3 -0
  46. data/test/example/test/functional/calls_controller_test.rb +15 -0
  47. data/test/example/test/performance/browsing_test.rb +9 -0
  48. data/test/example/test/unit/helpers/calls_helper_test.rb +4 -0
  49. metadata +52 -8
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.0.3 / 2010-03-06
2
+
3
+ * Fix Manifest so all required files get added (!)
4
+
1
5
  === 1.0.2 / 2010-02-06
2
6
 
3
7
  * Add support for default twiml layout
data/Manifest.txt CHANGED
@@ -3,9 +3,54 @@ History.txt
3
3
  Manifest.txt
4
4
  README.txt
5
5
  Rakefile
6
+ assets/layouts/default_layout.twiml.builder
7
+ bin/trails
6
8
  lib/trails.rb
7
9
  lib/trails/exception.rb
10
+ lib/trails/test_helper.rb
8
11
  lib/trails/twilio/account.rb
9
12
  lib/trails/twilio/call_handling.rb
10
13
  lib/trails/twilio/incoming.rb
14
+ lib/twiliorest.rb
15
+ test/example/README
16
+ test/example/Rakefile
17
+ test/example/app/controllers/application_controller.rb
18
+ test/example/app/controllers/calls_controller.rb
19
+ test/example/app/helpers/application_helper.rb
20
+ test/example/app/helpers/calls_helper.rb
21
+ test/example/app/views/calls/index.html.erb
22
+ test/example/app/views/calls/index.twiml.builder
23
+ test/example/config/boot.rb
24
+ test/example/config/database.yml
25
+ test/example/config/environment.rb
26
+ test/example/config/environments/development.rb
27
+ test/example/config/environments/production.rb
28
+ test/example/config/environments/test.rb
29
+ test/example/config/initializers/backtrace_silencers.rb
30
+ test/example/config/initializers/inflections.rb
31
+ test/example/config/initializers/mime_types.rb
32
+ test/example/config/initializers/new_rails_defaults.rb
33
+ test/example/config/initializers/session_store.rb
34
+ test/example/config/locales/en.yml
35
+ test/example/config/routes.rb
36
+ test/example/config/twilio.yml
37
+ test/example/db/development.sqlite3
38
+ test/example/db/schema.rb
39
+ test/example/db/seeds.rb
40
+ test/example/db/test.sqlite3
41
+ test/example/doc/README_FOR_APP
42
+ test/example/script/about
43
+ test/example/script/console
44
+ test/example/script/dbconsole
45
+ test/example/script/destroy
46
+ test/example/script/generate
47
+ test/example/script/performance/benchmarker
48
+ test/example/script/performance/profiler
49
+ test/example/script/plugin
50
+ test/example/script/runner
51
+ test/example/script/server
52
+ test/example/test/functional/calls_controller_test.rb
53
+ test/example/test/performance/browsing_test.rb
54
+ test/example/test/test_helper.rb
55
+ test/example/test/unit/helpers/calls_helper_test.rb
11
56
  test/test_trails.rb
data/README.txt CHANGED
@@ -4,10 +4,8 @@
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- Code to make developing twilio applications (even) easier in rails.
8
-
9
- Includes support for SMS, a special MimeType? (twiml), and functional tests: as_twilio{ get '/my_action' }
10
-
7
+ Makes developing twilio applications (even) easier in rails.
8
+ Support for SMS, twiml MimeType alias, functional test helpers.
11
9
 
12
10
  == FEATURES/PROBLEMS:
13
11
 
@@ -0,0 +1,4 @@
1
+ xml.instruct!
2
+ xml.Response do
3
+ xml << yield
4
+ end
data/bin/trails ADDED
File without changes
@@ -0,0 +1,127 @@
1
+ require 'ostruct'
2
+
3
+ module Trails
4
+ module TestHelper
5
+ def open_session_as_twilio( as_twilio_opts = {}, *args )
6
+ session = open_session( *args )
7
+ modify_session_with_twilio_opts( session, as_twilio_opts )
8
+ session
9
+ end
10
+
11
+ def as_twilio( as_twilio_opts = {}, &block )
12
+ if( @integration_session )
13
+ modify_session_with_twilio_opts( @integration_session, as_twilio_opts )
14
+ # end integration test
15
+ elsif( @controller ) # ok we're in a functional test
16
+ # mess with the controller, allowing us to add parameters
17
+ header_modifier = lambda{ |h,o| modify_headers_with_twilio_opts( h, o ) }
18
+ param_modifier = lambda{ |p,o| modify_params_with_twilio_opts( p, o ) }
19
+ @controller.metaclass.send( :define_method, :process_with_twilio_as_caller ) do |request, response|
20
+ # unfortunately we have to reach a little deep into the request here...
21
+ parameters_to_add = {}
22
+ header_modifier.call( request.env, as_twilio_opts )
23
+ param_modifier.call( parameters_to_add, as_twilio_opts )
24
+
25
+ # add_parameters
26
+ unless( parameters_to_add.blank? )
27
+ request.instance_variable_set( :@_memoized_query_string, nil ) # cause the query string to be un-memoized
28
+ add_parameters( parameters_to_add )
29
+ end
30
+
31
+ process_without_twilio_as_caller( request, response )
32
+ end # def process_with_twilio_as_caller
33
+ @controller.metaclass.send( :alias_method_chain, :process, :twilio_as_caller )
34
+
35
+ # need to to easily add parameters
36
+ @controller.metaclass.send( :define_method, :add_parameters ) do |params|
37
+ params ||= {}
38
+ request.query_parameters.merge!( params )
39
+ new_uri = request.request_uri + '&' + params.
40
+ collect{|k,v| "#{CGI::escape(k.to_s)}=#{CGI::escape(v.to_s)}"}.
41
+ join('&')
42
+ request.set_REQUEST_URI( new_uri )
43
+ request.__send__( :instance_variable_set, :@parameters, nil )
44
+ end # add_parameters
45
+ end # functional test
46
+
47
+ # cool. call the controller action now:
48
+ block.call()
49
+
50
+ end # as_twilio
51
+
52
+ # message defaults to @response.body
53
+ def assert_length_of_sms( message = nil )
54
+ message ||= @response.body
55
+ assert_block( build_message( "SMS should have been no longer than ? characters, but was ? characters.",
56
+ Trails::Twilio::Account::MAX_SMS_LENGTH, message.size ) ) {
57
+ message.size <= Trails::Twilio::Account::MAX_SMS_LENGTH
58
+ }
59
+ end
60
+
61
+
62
+ def user_presses( digits )
63
+ { 'Digits' => digits }
64
+ end
65
+
66
+ def user_records( sound_url )
67
+ { 'RecordingUrl' => sound_url }
68
+ end
69
+
70
+ protected
71
+ def modify_session_with_twilio_opts( session, as_twilio_opts )
72
+
73
+ header_modifier = lambda{ |h,o| modify_headers_with_twilio_opts( h, o ) }
74
+ param_modifier = lambda{ |p,o| modify_params_with_twilio_opts( p, o ) }
75
+
76
+ session.metaclass.send( :define_method, :process_with_twilio_as_caller ) do |method, path, params, headers|
77
+ params ||= {}
78
+ headers ||= {}
79
+
80
+ header_modifier.call( headers, as_twilio_opts )
81
+ param_modifier.call( params, as_twilio_opts )
82
+
83
+ process_without_twilio_as_caller( method, path, params, headers )
84
+ end # define process_with_twilio_as_caller
85
+ session.metaclass.send( :alias_method_chain, :process, :twilio_as_caller )
86
+ end
87
+
88
+ def modify_headers_with_twilio_opts( headers, as_twilio_opts )
89
+ account = if( as_twilio_opts[:account].blank? )
90
+ cfg = Twilio::Account.send( :config )
91
+ cfg[cfg.keys.first]
92
+ else
93
+ as_twilio_opts[:account]
94
+ end
95
+ headers['HTTP_X_TWILIO_ACCOUNTSID'] = account[:sid]
96
+ end
97
+
98
+ def modify_params_with_twilio_opts( params, as_twilio_opts )
99
+ caller = as_twilio_opts[:caller] || '4155551212'
100
+ called = as_twilio_opts[:called] || '6155556161'
101
+ from = as_twilio_opts[:from] || '6665554321'
102
+ params['Caller'] = caller
103
+ params['Called'] = called
104
+ params['From'] = from
105
+ end
106
+
107
+ private
108
+ module IntegrationDSL
109
+ end
110
+
111
+ end # module TestHelper
112
+ end # module Trails
113
+
114
+ # open up the TwilioRest::Account class so that we can keep track of faked requests
115
+ class TwilioRest::Account
116
+ def self.faked_requests
117
+ return @@fake_requests
118
+ end
119
+ def request_with_fake( url, method, params )
120
+ @@fake_requests ||= []
121
+ @@fake_requests.push( OpenStruct.new( :url => url, :method => method, :params => params ) )
122
+ fake_response = OpenStruct.new
123
+ fake_response.body = 'Fake Body'
124
+ fake_response
125
+ end
126
+ alias_method_chain :request, :fake
127
+ end
data/lib/trails.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Trails
2
- VERSION = '1.0.2'
2
+ VERSION = '1.0.3'
3
3
  end
4
4
  begin
5
5
  TwilioRest
data/lib/twiliorest.rb ADDED
@@ -0,0 +1,115 @@
1
+ =begin
2
+ Copyright (c) 2008 Twilio, Inc.
3
+
4
+ Permission is hereby granted, free of charge, to any person
5
+ obtaining a copy of this software and associated documentation
6
+ files (the "Software"), to deal in the Software without
7
+ restriction, including without limitation the rights to use,
8
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the
10
+ Software is furnished to do so, subject to the following
11
+ conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
+ OTHER DEALINGS IN THE SOFTWARE.
24
+ =end
25
+
26
+ module TwilioRest
27
+ require 'net/http'
28
+ require 'net/https'
29
+ require 'uri'
30
+ require 'cgi'
31
+
32
+ TWILIO_API_URL = 'https://api.twilio.com'
33
+
34
+ class TwilioRest::Account
35
+
36
+ #initialize a twilio account object
37
+ #
38
+ #id: Twilio account SID/ID
39
+ #token: Twilio account token
40
+ #
41
+ #returns a Twilio account object
42
+ def initialize(id, token)
43
+ @id = id
44
+ @token = token
45
+ end
46
+
47
+ def _urlencode(params)
48
+ params.to_a.collect! \
49
+ { |k, v| "#{k}=#{CGI.escape(v.to_s)}" }.join("&")
50
+ end
51
+
52
+ def _build_get_uri(uri, params)
53
+ if params && params.length > 0
54
+ if uri.include?('?')
55
+ if uri[-1, 1] != '&'
56
+ uri += '&'
57
+ end
58
+ uri += _urlencode(params)
59
+ else
60
+ uri += '?' + _urlencode(params)
61
+ end
62
+ end
63
+ return uri
64
+ end
65
+
66
+ def _fetch(url, params, method=nil)
67
+ if method && method == 'GET'
68
+ url = _build_get_uri(url, params)
69
+ end
70
+ uri = URI.parse(url)
71
+
72
+ http = Net::HTTP.new(uri.host, uri.port)
73
+ http.use_ssl = true
74
+
75
+ if method && method == 'GET'
76
+ req = Net::HTTP::Get.new(uri.request_uri)
77
+ elsif method && method == 'DELETE'
78
+ req = Net::HTTP::Delete.new(uri.request_uri)
79
+ elsif method && method == 'PUT'
80
+ req = Net::HTTP::Put.new(uri.request_uri)
81
+ req.set_form_data(params)
82
+ else
83
+ req = Net::HTTP::Post.new(uri.request_uri)
84
+ req.set_form_data(params)
85
+ end
86
+ req.basic_auth(@id, @token)
87
+
88
+ return http.request(req)
89
+ end
90
+
91
+ #sends a request and gets a response from the Twilio REST API
92
+ #
93
+ #path: the URL (relative to the endpoint URL, after the /v1
94
+ #url: the HTTP method to use, defaults to POST
95
+ #vars: for POST or PUT, a dict of data to send
96
+ #
97
+ #returns Twilio response XML or raises an exception on error
98
+ def request(path, method=nil, vars={})
99
+ if !path || path.length < 1
100
+ raise ArgumentError, 'Invalid path parameter'
101
+ end
102
+ if method && !['GET', 'POST', 'DELETE', 'PUT'].include?(method)
103
+ raise NotImplementedError, 'HTTP %s not implemented' % method
104
+ end
105
+
106
+ if path[0, 1] == '/'
107
+ uri = TWILIO_API_URL + path
108
+ else
109
+ uri = TWILIO_API_URL + '/' + path
110
+ end
111
+
112
+ return _fetch(uri, vars, method)
113
+ end
114
+ end
115
+ end
@@ -0,0 +1,243 @@
1
+ == Welcome to Rails
2
+
3
+ Rails is a web-application framework that includes everything needed to create
4
+ database-backed web applications according to the Model-View-Control pattern.
5
+
6
+ This pattern splits the view (also called the presentation) into "dumb" templates
7
+ that are primarily responsible for inserting pre-built data in between HTML tags.
8
+ The model contains the "smart" domain objects (such as Account, Product, Person,
9
+ Post) that holds all the business logic and knows how to persist themselves to
10
+ a database. The controller handles the incoming requests (such as Save New Account,
11
+ Update Product, Show Post) by manipulating the model and directing data to the view.
12
+
13
+ In Rails, the model is handled by what's called an object-relational mapping
14
+ layer entitled Active Record. This layer allows you to present the data from
15
+ database rows as objects and embellish these data objects with business logic
16
+ methods. You can read more about Active Record in
17
+ link:files/vendor/rails/activerecord/README.html.
18
+
19
+ The controller and view are handled by the Action Pack, which handles both
20
+ layers by its two parts: Action View and Action Controller. These two layers
21
+ are bundled in a single package due to their heavy interdependence. This is
22
+ unlike the relationship between the Active Record and Action Pack that is much
23
+ more separate. Each of these packages can be used independently outside of
24
+ Rails. You can read more about Action Pack in
25
+ link:files/vendor/rails/actionpack/README.html.
26
+
27
+
28
+ == Getting Started
29
+
30
+ 1. At the command prompt, start a new Rails application using the <tt>rails</tt> command
31
+ and your application name. Ex: rails myapp
32
+ 2. Change directory into myapp and start the web server: <tt>script/server</tt> (run with --help for options)
33
+ 3. Go to http://localhost:3000/ and get "Welcome aboard: You're riding the Rails!"
34
+ 4. Follow the guidelines to start developing your application
35
+
36
+
37
+ == Web Servers
38
+
39
+ By default, Rails will try to use Mongrel if it's are installed when started with script/server, otherwise Rails will use WEBrick, the webserver that ships with Ruby. But you can also use Rails
40
+ with a variety of other web servers.
41
+
42
+ Mongrel is a Ruby-based webserver with a C component (which requires compilation) that is
43
+ suitable for development and deployment of Rails applications. If you have Ruby Gems installed,
44
+ getting up and running with mongrel is as easy as: <tt>gem install mongrel</tt>.
45
+ More info at: http://mongrel.rubyforge.org
46
+
47
+ Say other Ruby web servers like Thin and Ebb or regular web servers like Apache or LiteSpeed or
48
+ Lighttpd or IIS. The Ruby web servers are run through Rack and the latter can either be setup to use
49
+ FCGI or proxy to a pack of Mongrels/Thin/Ebb servers.
50
+
51
+ == Apache .htaccess example for FCGI/CGI
52
+
53
+ # General Apache options
54
+ AddHandler fastcgi-script .fcgi
55
+ AddHandler cgi-script .cgi
56
+ Options +FollowSymLinks +ExecCGI
57
+
58
+ # If you don't want Rails to look in certain directories,
59
+ # use the following rewrite rules so that Apache won't rewrite certain requests
60
+ #
61
+ # Example:
62
+ # RewriteCond %{REQUEST_URI} ^/notrails.*
63
+ # RewriteRule .* - [L]
64
+
65
+ # Redirect all requests not available on the filesystem to Rails
66
+ # By default the cgi dispatcher is used which is very slow
67
+ #
68
+ # For better performance replace the dispatcher with the fastcgi one
69
+ #
70
+ # Example:
71
+ # RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
72
+ RewriteEngine On
73
+
74
+ # If your Rails application is accessed via an Alias directive,
75
+ # then you MUST also set the RewriteBase in this htaccess file.
76
+ #
77
+ # Example:
78
+ # Alias /myrailsapp /path/to/myrailsapp/public
79
+ # RewriteBase /myrailsapp
80
+
81
+ RewriteRule ^$ index.html [QSA]
82
+ RewriteRule ^([^.]+)$ $1.html [QSA]
83
+ RewriteCond %{REQUEST_FILENAME} !-f
84
+ RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
85
+
86
+ # In case Rails experiences terminal errors
87
+ # Instead of displaying this message you can supply a file here which will be rendered instead
88
+ #
89
+ # Example:
90
+ # ErrorDocument 500 /500.html
91
+
92
+ ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
93
+
94
+
95
+ == Debugging Rails
96
+
97
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
98
+ will help you debug it and get it back on the rails.
99
+
100
+ First area to check is the application log files. Have "tail -f" commands running
101
+ on the server.log and development.log. Rails will automatically display debugging
102
+ and runtime information to these files. Debugging info will also be shown in the
103
+ browser on requests from 127.0.0.1.
104
+
105
+ You can also log your own messages directly into the log file from your code using
106
+ the Ruby logger class from inside your controllers. Example:
107
+
108
+ class WeblogController < ActionController::Base
109
+ def destroy
110
+ @weblog = Weblog.find(params[:id])
111
+ @weblog.destroy
112
+ logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
113
+ end
114
+ end
115
+
116
+ The result will be a message in your log file along the lines of:
117
+
118
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1
119
+
120
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
121
+
122
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/ including:
123
+
124
+ * The Learning Ruby (Pickaxe) Book: http://www.ruby-doc.org/docs/ProgrammingRuby/
125
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
126
+
127
+ These two online (and free) books will bring you up to speed on the Ruby language
128
+ and also on programming in general.
129
+
130
+
131
+ == Debugger
132
+
133
+ Debugger support is available through the debugger command when you start your Mongrel or
134
+ Webrick server with --debugger. This means that you can break out of execution at any point
135
+ in the code, investigate and change the model, AND then resume execution!
136
+ You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'
137
+ Example:
138
+
139
+ class WeblogController < ActionController::Base
140
+ def index
141
+ @posts = Post.find(:all)
142
+ debugger
143
+ end
144
+ end
145
+
146
+ So the controller will accept the action, run the first line, then present you
147
+ with a IRB prompt in the server window. Here you can do things like:
148
+
149
+ >> @posts.inspect
150
+ => "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
151
+ #<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
152
+ >> @posts.first.title = "hello from a debugger"
153
+ => "hello from a debugger"
154
+
155
+ ...and even better is that you can examine how your runtime objects actually work:
156
+
157
+ >> f = @posts.first
158
+ => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
159
+ >> f.
160
+ Display all 152 possibilities? (y or n)
161
+
162
+ Finally, when you're ready to resume execution, you enter "cont"
163
+
164
+
165
+ == Console
166
+
167
+ You can interact with the domain model by starting the console through <tt>script/console</tt>.
168
+ Here you'll have all parts of the application configured, just like it is when the
169
+ application is running. You can inspect domain models, change values, and save to the
170
+ database. Starting the script without arguments will launch it in the development environment.
171
+ Passing an argument will specify a different environment, like <tt>script/console production</tt>.
172
+
173
+ To reload your controllers and models after launching the console run <tt>reload!</tt>
174
+
175
+ == dbconsole
176
+
177
+ You can go to the command line of your database directly through <tt>script/dbconsole</tt>.
178
+ You would be connected to the database with the credentials defined in database.yml.
179
+ Starting the script without arguments will connect you to the development database. Passing an
180
+ argument will connect you to a different database, like <tt>script/dbconsole production</tt>.
181
+ Currently works for mysql, postgresql and sqlite.
182
+
183
+ == Description of Contents
184
+
185
+ app
186
+ Holds all the code that's specific to this particular application.
187
+
188
+ app/controllers
189
+ Holds controllers that should be named like weblogs_controller.rb for
190
+ automated URL mapping. All controllers should descend from ApplicationController
191
+ which itself descends from ActionController::Base.
192
+
193
+ app/models
194
+ Holds models that should be named like post.rb.
195
+ Most models will descend from ActiveRecord::Base.
196
+
197
+ app/views
198
+ Holds the template files for the view that should be named like
199
+ weblogs/index.html.erb for the WeblogsController#index action. All views use eRuby
200
+ syntax.
201
+
202
+ app/views/layouts
203
+ Holds the template files for layouts to be used with views. This models the common
204
+ header/footer method of wrapping views. In your views, define a layout using the
205
+ <tt>layout :default</tt> and create a file named default.html.erb. Inside default.html.erb,
206
+ call <% yield %> to render the view using this layout.
207
+
208
+ app/helpers
209
+ Holds view helpers that should be named like weblogs_helper.rb. These are generated
210
+ for you automatically when using script/generate for controllers. Helpers can be used to
211
+ wrap functionality for your views into methods.
212
+
213
+ config
214
+ Configuration files for the Rails environment, the routing map, the database, and other dependencies.
215
+
216
+ db
217
+ Contains the database schema in schema.rb. db/migrate contains all
218
+ the sequence of Migrations for your schema.
219
+
220
+ doc
221
+ This directory is where your application documentation will be stored when generated
222
+ using <tt>rake doc:app</tt>
223
+
224
+ lib
225
+ Application specific libraries. Basically, any kind of custom code that doesn't
226
+ belong under controllers, models, or helpers. This directory is in the load path.
227
+
228
+ public
229
+ The directory available for the web server. Contains subdirectories for images, stylesheets,
230
+ and javascripts. Also contains the dispatchers and the default HTML files. This should be
231
+ set as the DOCUMENT_ROOT of your web server.
232
+
233
+ script
234
+ Helper scripts for automation and generation.
235
+
236
+ test
237
+ Unit and functional tests along with fixtures. When using the script/generate scripts, template
238
+ test files will be generated for you and placed in this directory.
239
+
240
+ vendor
241
+ External libraries that the application depends on. Also includes the plugins subdirectory.
242
+ If the app has frozen rails, those gems also go here, under vendor/rails/.
243
+ This directory is in the load path.
@@ -0,0 +1,10 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
+
6
+ require 'rake'
7
+ require 'rake/testtask'
8
+ require 'rake/rdoctask'
9
+
10
+ require 'tasks/rails'
@@ -0,0 +1,11 @@
1
+ # Filters added to this controller apply to all controllers in the application.
2
+ # Likewise, all the methods added will be available for all controllers.
3
+
4
+ class ApplicationController < ActionController::Base
5
+ helper :all # include all helpers, all the time
6
+ include Trails::Twilio::CallHandling
7
+ protect_from_forgery # See ActionController::RequestForgeryProtection for details
8
+
9
+ # Scrub sensitive parameters from your log
10
+ # filter_parameter_logging :password
11
+ end
@@ -0,0 +1,8 @@
1
+ class CallsController < ApplicationController
2
+ def index
3
+ respond_to do |format|
4
+ format.html {}
5
+ format.twiml {}
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ # Methods added to this helper will be available to all templates in the application.
2
+ module ApplicationHelper
3
+ end
@@ -0,0 +1,2 @@
1
+ module CallsHelper
2
+ end
@@ -0,0 +1 @@
1
+ <%= link_to 'Click to record a message', :action => :new %>
@@ -0,0 +1,2 @@
1
+ xml.Say "Press 1 to record a message"
2
+ xml.Gather
@@ -0,0 +1,110 @@
1
+ # Don't change this file!
2
+ # Configure your app in config/environment.rb and config/environments/*.rb
3
+
4
+ RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
5
+
6
+ module Rails
7
+ class << self
8
+ def boot!
9
+ unless booted?
10
+ preinitialize
11
+ pick_boot.run
12
+ end
13
+ end
14
+
15
+ def booted?
16
+ defined? Rails::Initializer
17
+ end
18
+
19
+ def pick_boot
20
+ (vendor_rails? ? VendorBoot : GemBoot).new
21
+ end
22
+
23
+ def vendor_rails?
24
+ File.exist?("#{RAILS_ROOT}/vendor/rails")
25
+ end
26
+
27
+ def preinitialize
28
+ load(preinitializer_path) if File.exist?(preinitializer_path)
29
+ end
30
+
31
+ def preinitializer_path
32
+ "#{RAILS_ROOT}/config/preinitializer.rb"
33
+ end
34
+ end
35
+
36
+ class Boot
37
+ def run
38
+ load_initializer
39
+ Rails::Initializer.run(:set_load_path)
40
+ end
41
+ end
42
+
43
+ class VendorBoot < Boot
44
+ def load_initializer
45
+ require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
46
+ Rails::Initializer.run(:install_gem_spec_stubs)
47
+ Rails::GemDependency.add_frozen_gem_path
48
+ end
49
+ end
50
+
51
+ class GemBoot < Boot
52
+ def load_initializer
53
+ self.class.load_rubygems
54
+ load_rails_gem
55
+ require 'initializer'
56
+ end
57
+
58
+ def load_rails_gem
59
+ if version = self.class.gem_version
60
+ gem 'rails', version
61
+ else
62
+ gem 'rails'
63
+ end
64
+ rescue Gem::LoadError => load_error
65
+ $stderr.puts %(Missing the Rails #{version} gem. Please `gem install -v=#{version} rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed.)
66
+ exit 1
67
+ end
68
+
69
+ class << self
70
+ def rubygems_version
71
+ Gem::RubyGemsVersion rescue nil
72
+ end
73
+
74
+ def gem_version
75
+ if defined? RAILS_GEM_VERSION
76
+ RAILS_GEM_VERSION
77
+ elsif ENV.include?('RAILS_GEM_VERSION')
78
+ ENV['RAILS_GEM_VERSION']
79
+ else
80
+ parse_gem_version(read_environment_rb)
81
+ end
82
+ end
83
+
84
+ def load_rubygems
85
+ min_version = '1.3.2'
86
+ require 'rubygems'
87
+ unless rubygems_version >= min_version
88
+ $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
89
+ exit 1
90
+ end
91
+
92
+ rescue LoadError
93
+ $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org)
94
+ exit 1
95
+ end
96
+
97
+ def parse_gem_version(text)
98
+ $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
99
+ end
100
+
101
+ private
102
+ def read_environment_rb
103
+ File.read("#{RAILS_ROOT}/config/environment.rb")
104
+ end
105
+ end
106
+ end
107
+ end
108
+
109
+ # All that for this:
110
+ Rails.boot!
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3-ruby (not necessary on OS X Leopard)
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,43 @@
1
+ # Be sure to restart your server when you modify this file
2
+
3
+ # Specifies gem version of Rails to use when vendor/rails is not present
4
+ RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
5
+
6
+ # Bootstrap the Rails environment, frameworks, and default configuration
7
+ require File.join(File.dirname(__FILE__), 'boot')
8
+ $: << File.join( File.dirname( __FILE__ ), '../../../lib/' )
9
+ require 'trails'
10
+ Rails::Initializer.run do |config|
11
+ # Settings in config/environments/* take precedence over those specified here.
12
+ # Application configuration should go into files in config/initializers
13
+ # -- all .rb files in that directory are automatically loaded.
14
+
15
+ # Add additional load paths for your own custom dirs
16
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
17
+
18
+ # Specify gems that this application depends on and have them installed with rake gems:install
19
+ # config.gem "bj"
20
+ # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
21
+ # config.gem "sqlite3-ruby", :lib => "sqlite3"
22
+ # config.gem "aws-s3", :lib => "aws/s3"
23
+
24
+ # Only load the plugins named here, in the order given (default is alphabetical).
25
+ # :all can be used as a placeholder for all plugins not explicitly named
26
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
27
+
28
+ # Skip frameworks you're not going to use. To use Rails without a database,
29
+ # you must remove the Active Record framework.
30
+ # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
31
+
32
+ # Activate observers that should always be running
33
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
34
+
35
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
36
+ # Run "rake -D time" for a list of tasks for finding time zone names.
37
+ config.time_zone = 'UTC'
38
+
39
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
40
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
41
+ # config.i18n.default_locale = :de
42
+ end
43
+
@@ -0,0 +1,17 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = false
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Show full error reports and disable caching
12
+ config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = 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
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
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.action_controller.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # See everything in the log (default is :info)
13
+ # config.log_level = :debug
14
+
15
+ # Use a different logger for distributed setups
16
+ # config.logger = SyslogLogger.new
17
+
18
+ # Use a different cache store in production
19
+ # config.cache_store = :mem_cache_store
20
+
21
+ # Enable serving of images, stylesheets, and javascripts from an asset server
22
+ # config.action_controller.asset_host = "http://assets.example.com"
23
+
24
+ # Disable delivery errors, bad email addresses will be ignored
25
+ # config.action_mailer.raise_delivery_errors = false
26
+
27
+ # Enable threaded mode
28
+ # config.threadsafe!
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The test environment is used exclusively to run your application's
4
+ # test suite. You never need to work with it otherwise. Remember that
5
+ # your test database is "scratch space" for the test suite and is wiped
6
+ # and recreated between test runs. Don't rely on the data there!
7
+ config.cache_classes = true
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.action_controller.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+ config.action_view.cache_template_loading = true
16
+
17
+ # Disable request forgery protection in test environment
18
+ config.action_controller.allow_forgery_protection = false
19
+
20
+ # Tell Action Mailer not to deliver emails to the real world.
21
+ # The :test delivery method accumulates sent emails in the
22
+ # ActionMailer::Base.deliveries array.
23
+ config.action_mailer.delivery_method = :test
24
+
25
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
26
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
27
+ # like if you have constraints or database-specific column types
28
+ # config.active_record.schema_format = :sql
@@ -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 do debug a problem that might steem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
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
@@ -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,21 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # These settings change the behavior of Rails 2 apps and will be defaults
4
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
5
+
6
+ if defined?(ActiveRecord)
7
+ # Include Active Record class name as root for JSON serialized output.
8
+ ActiveRecord::Base.include_root_in_json = true
9
+
10
+ # Store the full class name (including module namespace) in STI type column.
11
+ ActiveRecord::Base.store_full_sti_class = true
12
+ end
13
+
14
+ ActionController::Routing.generate_best_match = false
15
+
16
+ # Use ISO 8601 format for JSON serialized times and dates.
17
+ ActiveSupport.use_standard_json_time_format = true
18
+
19
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
20
+ # if you're including raw json in an HTML page.
21
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying cookie session data integrity.
4
+ # If you change this key, all old sessions 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
+ ActionController::Base.session = {
8
+ :key => '_example_session',
9
+ :secret => '2c1d7e3c41ff13300dd5f19519ceef19ad10787ce1bcf38f9ef5a430bf2bd7a239547301aa433cfd47db542d32a251d9245f4dcb8d38cb3b6802013fe955a278'
10
+ }
11
+
12
+ # Use the database for sessions instead of the cookie-based default,
13
+ # which shouldn't be used to store highly confidential information
14
+ # (create the session table with "rake db:sessions:create")
15
+ # ActionController::Base.session_store = :active_record_store
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,43 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+
4
+ # Sample of regular route:
5
+ # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
6
+ # Keep in mind you can assign values other than :controller and :action
7
+
8
+ # Sample of named route:
9
+ # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
10
+ # This route can be invoked with purchase_url(:id => product.id)
11
+
12
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
13
+ # map.resources :products
14
+
15
+ # Sample resource route with options:
16
+ # map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
17
+
18
+ # Sample resource route with sub-resources:
19
+ # map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
20
+
21
+ # Sample resource route with more complex sub-resources
22
+ # map.resources :products do |products|
23
+ # products.resources :comments
24
+ # products.resources :sales, :collection => { :recent => :get }
25
+ # end
26
+
27
+ # Sample resource route within a namespace:
28
+ # map.namespace :admin do |admin|
29
+ # # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
30
+ # admin.resources :products
31
+ # end
32
+
33
+ # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
34
+ # map.root :controller => "welcome"
35
+
36
+ # See how all your routes lay out with "rake routes"
37
+
38
+ # Install the default routes as the lowest priority.
39
+ # Note: These default routes make all actions in every controller accessible via GET requests. You should
40
+ # consider removing or commenting them out if you're using named routes and resources.
41
+ map.connect ':controller/:action/:id'
42
+ map.connect ':controller/:action/:id.:format'
43
+ end
@@ -0,0 +1,3 @@
1
+ "YourTwilioSid":
2
+ :sid: "YourTwilioSid"
3
+ :token: "YourTwilioToken"
Binary file
@@ -0,0 +1,14 @@
1
+ # This file is auto-generated from the current state of the database. Instead of editing this file,
2
+ # please use the migrations feature of Active Record to incrementally modify your database, and
3
+ # then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your database schema. If you need
6
+ # to create the application database on another system, you should be using db:schema:load, not running
7
+ # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
8
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
9
+ #
10
+ # It's strongly recommended to check this file into your version control system.
11
+
12
+ ActiveRecord::Schema.define(:version => 0) do
13
+
14
+ 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
+ # Major.create(:name => 'Daley', :city => cities.first)
Binary file
@@ -0,0 +1,2 @@
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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ $LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info"
4
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/console'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/dbconsole'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/destroy'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../../config/boot', __FILE__)
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../../config/boot', __FILE__)
3
+ require 'commands/performance/profiler'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/runner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/server'
@@ -0,0 +1,15 @@
1
+ require File.join( File.dirname( __FILE__ ), '../test_helper' )
2
+ require 'trails/test_helper'
3
+
4
+ class CallsControllerTest < ActionController::TestCase
5
+ include Trails::TestHelper
6
+
7
+ test "the index action" do
8
+ get :index
9
+ assert_response :success
10
+ assert_match( /Click to /, @response.body )
11
+ as_twilio{ get :index }
12
+ assert_response :success
13
+ # assert_tag( :tag => 'Say' ) # WIP
14
+ end
15
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+ require 'performance_test_help'
3
+
4
+ # Profiling results for each test method are written to tmp/performance.
5
+ class BrowsingTest < ActionController::PerformanceTest
6
+ def test_homepage
7
+ get '/'
8
+ end
9
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class CallsHelperTest < ActionView::TestCase
4
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hemant Bhanoo
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-02-07 00:00:00 -08:00
12
+ date: 2010-03-08 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -43,13 +43,12 @@ dependencies:
43
43
  version: 2.5.0
44
44
  version:
45
45
  description: |-
46
- Code to make developing twilio applications (even) easier in rails.
47
-
48
- Includes support for SMS, a special MimeType? (twiml), and functional tests: as_twilio{ get '/my_action' }
46
+ Makes developing twilio applications (even) easier in rails.
47
+ Support for SMS, twiml MimeType alias, functional test helpers.
49
48
  email:
50
49
  - hemant@bhanoo.com
51
- executables: []
52
-
50
+ executables:
51
+ - trails
53
52
  extensions: []
54
53
 
55
54
  extra_rdoc_files:
@@ -62,11 +61,56 @@ files:
62
61
  - Manifest.txt
63
62
  - README.txt
64
63
  - Rakefile
64
+ - assets/layouts/default_layout.twiml.builder
65
+ - bin/trails
65
66
  - lib/trails.rb
66
67
  - lib/trails/exception.rb
68
+ - lib/trails/test_helper.rb
67
69
  - lib/trails/twilio/account.rb
68
70
  - lib/trails/twilio/call_handling.rb
69
71
  - lib/trails/twilio/incoming.rb
72
+ - lib/twiliorest.rb
73
+ - test/example/README
74
+ - test/example/Rakefile
75
+ - test/example/app/controllers/application_controller.rb
76
+ - test/example/app/controllers/calls_controller.rb
77
+ - test/example/app/helpers/application_helper.rb
78
+ - test/example/app/helpers/calls_helper.rb
79
+ - test/example/app/views/calls/index.html.erb
80
+ - test/example/app/views/calls/index.twiml.builder
81
+ - test/example/config/boot.rb
82
+ - test/example/config/database.yml
83
+ - test/example/config/environment.rb
84
+ - test/example/config/environments/development.rb
85
+ - test/example/config/environments/production.rb
86
+ - test/example/config/environments/test.rb
87
+ - test/example/config/initializers/backtrace_silencers.rb
88
+ - test/example/config/initializers/inflections.rb
89
+ - test/example/config/initializers/mime_types.rb
90
+ - test/example/config/initializers/new_rails_defaults.rb
91
+ - test/example/config/initializers/session_store.rb
92
+ - test/example/config/locales/en.yml
93
+ - test/example/config/routes.rb
94
+ - test/example/config/twilio.yml
95
+ - test/example/db/development.sqlite3
96
+ - test/example/db/schema.rb
97
+ - test/example/db/seeds.rb
98
+ - test/example/db/test.sqlite3
99
+ - test/example/doc/README_FOR_APP
100
+ - test/example/script/about
101
+ - test/example/script/console
102
+ - test/example/script/dbconsole
103
+ - test/example/script/destroy
104
+ - test/example/script/generate
105
+ - test/example/script/performance/benchmarker
106
+ - test/example/script/performance/profiler
107
+ - test/example/script/plugin
108
+ - test/example/script/runner
109
+ - test/example/script/server
110
+ - test/example/test/functional/calls_controller_test.rb
111
+ - test/example/test/performance/browsing_test.rb
112
+ - test/example/test/test_helper.rb
113
+ - test/example/test/unit/helpers/calls_helper_test.rb
70
114
  - test/test_trails.rb
71
115
  has_rdoc: true
72
116
  homepage: http://code.google.com/p/twilio-on-rails/
@@ -96,7 +140,7 @@ rubyforge_project: trails
96
140
  rubygems_version: 1.3.5
97
141
  signing_key:
98
142
  specification_version: 3
99
- summary: Code to make developing twilio applications (even) easier in rails
143
+ summary: Makes developing twilio applications (even) easier in rails
100
144
  test_files:
101
145
  - test/example/test/test_helper.rb
102
146
  - test/test_trails.rb