touchstone 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
Touchstone is a Rails Engine that adds the ability to track advanced metrics for your web app. It is inspired by [this post on the Think Vitamin blog](http://thinkvitamin.com/business/marketing/how-to-get-more-customers/). I would recommend reading that article to understand what Touchstone does.
|
2
2
|
|
3
|
+
**Please consider this an alpha release. Versions will be released fairly quickly. Hopefully nothing will break but I'm trying to get this running in production on one of my apps so correcting errors as I go.**
|
4
|
+
|
3
5
|
Touchstone consists of 3 classes:
|
4
6
|
|
5
7
|
## Campaigns
|
@@ -101,4 +103,4 @@ Touchstone requires your user model to have a method called lifetime\_value in o
|
|
101
103
|
## Todo
|
102
104
|
|
103
105
|
* Add some tests
|
104
|
-
*
|
106
|
+
* Copy css and js to application
|
@@ -2,8 +2,8 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>Touchstone Metrics</title>
|
5
|
-
<%= stylesheet_link_tag "application.css" %>
|
6
|
-
<%= javascript_include_tag "application.js" %>
|
5
|
+
<%= stylesheet_link_tag "touchstone/application.css" %>
|
6
|
+
<%= javascript_include_tag "touchstone/application.js" %>
|
7
7
|
<%= csrf_meta_tag %>
|
8
8
|
</head>
|
9
9
|
<body class="touchstone">
|
data/lib/touchstone/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: touchstone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -159,7 +159,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
159
159
|
version: '0'
|
160
160
|
segments:
|
161
161
|
- 0
|
162
|
-
hash:
|
162
|
+
hash: 2060953684547118764
|
163
163
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
164
|
none: false
|
165
165
|
requirements:
|
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
168
168
|
version: '0'
|
169
169
|
segments:
|
170
170
|
- 0
|
171
|
-
hash:
|
171
|
+
hash: 2060953684547118764
|
172
172
|
requirements: []
|
173
173
|
rubyforge_project:
|
174
174
|
rubygems_version: 1.8.20
|