countupjs-rails 1.3.2.1 → 1.3.2.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: d5c29824b129652b50f08f3b5ac11e7d19adeb7a
4
- data.tar.gz: 547bb4f154c0c11bbdd73e1cf239bf631cd2548b
3
+ metadata.gz: 33cdd4c426482995ce5b9c2dfa7b8b5dcaadf3a3
4
+ data.tar.gz: 6ab72aa2d025d4c8f57651b6ee5829afa441c806
5
5
  SHA512:
6
- metadata.gz: 30a4fd4a0dc6b9b5344f6cfb7e65574cc39ff2a17f86907bac760bce8de7a8ce3ed3de00ecbea3d69f925b68962b6a6a9622d140c0aaeb902b5c0bbde06df582
7
- data.tar.gz: 74f0f4c355df3a1213bde8a11ad278b6ac975e90fc40fc40ff882945357078f9270825a0500356c747b7e238e2729140624f3798b2bc6a02a6e0c2df250cf274
6
+ metadata.gz: 1d20a19ab7d4f9c14669b10c7bcddff09a9d514a0e92e119d9d213930669848546ad489d2c84c9aca973b2e780cc187ba90cb536631e26c5c849010f51c78a6f
7
+ data.tar.gz: ebacfe68b190647f31613ab5ffc5d454e0e1c9bfcddaf640b0991a4b96b2d7747ef53ced0e9b3974ad62cc8b6c256a9c6820aa884eae52926ff6f6d75b5e4292
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in countupjs-rails.gemspec
4
+ gemspec
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'countupjs/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "countupjs-rails"
8
+ spec.version = Countupjs::Rails::VERSION
9
+ spec.authors = ["Richard Tan"]
10
+ spec.email = ["chardos@gmail.com"]
11
+ spec.summary = %q{This gem provides countUp.js for your rails application.}
12
+ # spec.description = %q{TODO: Write a longer description. Optional.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_development_dependency "bundler", "~> 1.7"
20
+ spec.add_development_dependency "rake", "~> 10.0"
21
+ spec.add_dependency "railties", "> 3.1"
22
+ end
@@ -1,5 +1,5 @@
1
1
  module Countupjs
2
2
  module Rails
3
- VERSION = "1.3.2.1"
3
+ VERSION = "1.3.2.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: countupjs-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2.1
4
+ version: 1.3.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Tan
@@ -52,15 +52,19 @@ dependencies:
52
52
  - - ">"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.1'
55
- description: ''
55
+ description:
56
56
  email:
57
57
  - chardos@gmail.com
58
58
  executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".gitignore"
63
+ - Gemfile
62
64
  - MIT-LICENSE.txt
63
65
  - README.md
66
+ - Rakefile
67
+ - countupjs-rails.gemspec
64
68
  - lib/countupjs-rails.rb
65
69
  - lib/countupjs/version.rb
66
70
  - vendor/assets/javascripts/countUp.js