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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b50c14bce234cefbe5af68b9f21c62840705101e
4
- data.tar.gz: d6059fd0603d24e5d368b66143ffb993725ccfe1
3
+ metadata.gz: aef5bb676bf24c39f119c40fb8213b625d5750c5
4
+ data.tar.gz: 33d5ad4294cf7142c7c6435a580e88451d2a04de
5
5
  SHA512:
6
- metadata.gz: 0b4c90cc0bdd83a90a6e85f16c38db2c748edb23a958001313ebe851eb05d5817d4d5991b288f65c0c804eee5e9aa5e1814cad196630ab917cb9bf997b6b8018
7
- data.tar.gz: b593f7e2041ff046905d441644d3c16ca6c745b1959ee3e4bc07b64246a1d4e11456576e9a764a5cf1992a9cc0bee01e72fc8096f0828f1e243e7db80d1bd67c
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.js)
27
+ In your Stylesheet manifest (e.g. application.css)
29
28
 
30
29
  //= require blink
31
30
 
32
- TODO: Write usage instructions here
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
- ## Contributing
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
@@ -1,3 +1,3 @@
1
1
  module TypedJS
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -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.1
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-27 00:00:00.000000000 Z
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: {}