gorilla_test-rails 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: eeddcddae9ec45c214cc7fbbf87f6c8c132d7098
4
+ data.tar.gz: 297994d99f919cc5e05340324dbc05c39f61b584
5
+ SHA512:
6
+ metadata.gz: 41baa774bd4c5e911c88a1eba6c34312b68f11249bfb3e425148283ddbf9b25309c1b51164eebeeae8c9a2e7d240aae37915a1773b11a42724c52e50d710325d
7
+ data.tar.gz: 133434db5c25fc1d056745dfb7c628165d90d05b1a0ef5de132f26c6bf57710dd8fad85b6912945fc9cf29992822a248237b995c0ce65eb1fad540c5f61aa305
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in autotest-rails.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Jim Ray
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following 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 OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Autotest::Rails
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'autotest-rails'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install autotest-rails
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
3
+ require 'gorilla_test/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "gorilla_test-rails"
7
+ spec.version = GorillaTest::Version::STRING
8
+ spec.authors = ["Jim Ray"]
9
+ spec.email = ["jim@bigastronaut.com"]
10
+ spec.description = %q{Includes script for gorilla test integration testing}
11
+ spec.summary = %q{Inculde script for gorilla test integration testing}
12
+ spec.homepage = "http://gorillatest.com"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files`.split($/)
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(spec)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.3"
21
+ spec.add_development_dependency "rake"
22
+ end
@@ -0,0 +1,12 @@
1
+ module GorillaTest
2
+ module Generators
3
+
4
+ class InstallGenerator < Rails::Generators::Base
5
+ source_root File.expand_path("../templates", __FILE__)
6
+ desc "Creates GorillaTest initializer for your application"
7
+ def copy_initializer
8
+ template 'gorilla_test.rb', 'config/initializers/gorilla_test.rb'
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,5 @@
1
+ GorillaTest.configure do |config|
2
+ # Set this options to what makes sense for you
3
+ config.api_key = ENV['GORILLA_TEST_API_KEY']
4
+ config.project_id = ENV['GORILLA_TEST_PROJECT_ID']
5
+ end
@@ -0,0 +1,7 @@
1
+ require "gorillatest/rails/version"
2
+
3
+ module GorillaTest
4
+ module Rails
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,8 @@
1
+ require 'gorilla_test/view_helper'
2
+ module GorillaTest
3
+ class Railtie < Rails::Railtie
4
+ initializer "setup config" do
5
+ ActionView::Base.send(:include, GorillaTest::ViewHelper)
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module GorillaTest # :nodoc:
2
+ module Version # :nodoc:
3
+ STRING = '0.0.1'
4
+ end
5
+ end
@@ -0,0 +1,15 @@
1
+ module GorillaTest
2
+ module ViewHelper
3
+
4
+ include ActionView::Helpers
5
+ include ActionPack
6
+
7
+ def gorilla_test_script
8
+ javascript_include_tag("https://www.gorillatest.com/assets/recordv2.js", data: {project_id: GorillaTest.configuration.project_id,
9
+ api_key: GorillaTest.configuration.api_key})
10
+
11
+
12
+ end
13
+
14
+ end
15
+ end
@@ -0,0 +1,56 @@
1
+ module GorillaTest
2
+
3
+ def self.configuration
4
+ @configuration ||= Configuration.new
5
+ end
6
+
7
+ def self.configure
8
+ config = configuration
9
+ yield(config)
10
+ end
11
+
12
+ # def self.with_configuration(config)
13
+ # original_config = {}
14
+
15
+ # config.each do |key, value|
16
+ # original_config[key] = configuration.send(key)
17
+ # configuration.send("#{key}=", value)
18
+ # end
19
+
20
+ # result = yield if block_given?
21
+
22
+ # original_config.each { |key, value| configuration.send("#{key}=", value) }
23
+ # result
24
+ # end
25
+
26
+ class Configuration
27
+
28
+ GORILLA_TEST_API_URL = "https://www.gorillatest.com/api"
29
+ GORILLA_TEST_NON_SSL_API_URL = "http://www.gorillatest.com/api"
30
+ DEFAULT_ENV = 'production'
31
+
32
+ attr_accessor :ssl_api_url,
33
+ :nonssl_api_url,
34
+ :api_key,
35
+ :project_id,
36
+ :env
37
+
38
+ def initialize #:nodoc:
39
+ @ssl_api_url = GORILLA_TEST_API_URL
40
+ @nonssl_api_url = GORILLA_TEST_NON_SSL_API_URL
41
+ @api_key = ENV['GORILLA_TEST_API_KEY']
42
+ @project_id = ENV['GORILLA_TEST_PROJECT_ID']
43
+ @env = DEFAULT_ENV
44
+ end
45
+
46
+ def api_server_url(ssl = nil) #:nodoc:
47
+ ssl = use_ssl_by_default if ssl.nil?
48
+ ssl ? ssl_api_url : nonssl_api_url
49
+ end
50
+
51
+ end
52
+
53
+
54
+ end
55
+
56
+ require 'gorilla_test/railtie' if defined?(Rails)
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gorilla_test-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jim Ray
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Includes script for gorilla test integration testing
42
+ email:
43
+ - jim@bigastronaut.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - Gemfile
49
+ - LICENSE.txt
50
+ - README.md
51
+ - Rakefile
52
+ - gorilla_test-rails.gemspec
53
+ - lib/generators/gorilla_test/install/install_generator.rb
54
+ - lib/generators/gorilla_test/install/templates/gorilla_test.rb
55
+ - lib/gorilla_test.rb
56
+ - lib/gorilla_test/rails.rb
57
+ - lib/gorilla_test/railtie.rb
58
+ - lib/gorilla_test/version.rb
59
+ - lib/gorilla_test/view_helper.rb
60
+ homepage: http://gorillatest.com
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.0.6
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: Inculde script for gorilla test integration testing
84
+ test_files: []