typedJS 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +15 -9
- data/lib/typedJS/version.rb +1 -1
- data/typedJS.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aef5bb676bf24c39f119c40fb8213b625d5750c5
|
4
|
+
data.tar.gz: 33d5ad4294cf7142c7c6435a580e88451d2a04de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 922beb448825a50990d6aacd433f150e9b7fac83ecdbf8510d81aebf82ec2a0031cfa68b01cab50ae5680dce2bd14207cb81e7483eb99f80cad07540b8abfc49
|
7
|
+
data.tar.gz: 190a7ceff4b972992868477153443502edcdf74e09671e91e97ef874e37f75c511d1cf696ee5b60ad76dd39748a30eb8a1ccaa58b101052e49503ab278b7a5e6
|
data/README.md
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# TypedJS
|
2
2
|
|
3
|
-
TODO: Write a gem description
|
4
3
|
|
5
4
|
## Installation
|
6
5
|
|
@@ -25,16 +24,23 @@ In your JavaScript manifest (e.g. application.js)
|
|
25
24
|
//= require typed
|
26
25
|
|
27
26
|
|
28
|
-
In your Stylesheet manifest (e.g. application.
|
27
|
+
In your Stylesheet manifest (e.g. application.css)
|
29
28
|
|
30
29
|
//= require blink
|
31
30
|
|
32
|
-
|
31
|
+
```erb
|
32
|
+
<script>
|
33
|
+
$(function(){
|
34
|
+
$(".element").typed({
|
35
|
+
strings: ["First sentence.", "Second sentence."],
|
36
|
+
typeSpeed: 0
|
37
|
+
});
|
38
|
+
});
|
39
|
+
</script>
|
40
|
+
...
|
33
41
|
|
34
|
-
|
42
|
+
<span class="element"></span>
|
43
|
+
|
44
|
+
|
45
|
+
```
|
35
46
|
|
36
|
-
1. Fork it ( https://github.com/[my-github-username]/typedJS/fork )
|
37
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
38
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
39
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
40
|
-
5. Create a new Pull Request
|
data/lib/typedJS/version.rb
CHANGED
data/typedJS.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["gudeamit148@gmail.com"]
|
11
11
|
spec.summary = %q{This gem allows to users to simulate typing animation for some text}
|
12
12
|
spec.description = %q{This gem allows to users to simulate typing animation for some text}
|
13
|
-
spec.homepage = ""
|
13
|
+
spec.homepage = "https://github.com/amitgude/TypedJsGem"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typedJS
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -57,7 +57,7 @@ files:
|
|
57
57
|
- vendor/assets/javascripts/typed.js
|
58
58
|
- vendor/assets/stylesheets/.keep
|
59
59
|
- vendor/assets/stylesheets/blink.css
|
60
|
-
homepage:
|
60
|
+
homepage: https://github.com/amitgude/TypedJsGem
|
61
61
|
licenses:
|
62
62
|
- MIT
|
63
63
|
metadata: {}
|