crushinator 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +4 -0
  2. data/crushinator.gemspec +24 -0
  3. data/lib/crushinator.rb +14 -0
  4. metadata +68 -0
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ Crushinator (v0.0.0)
2
+ ===========
3
+
4
+ Create Crushinator style css animation from animation sequence files
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH.push File.expand_path("lib", File.dirname(__FILE__))
3
+ require 'crushinator'
4
+
5
+ Gem::Specification.new do |s|
6
+
7
+ s.name = "crushinator"
8
+ s.version = Crushinator::VERSION
9
+ s.platform = Gem::Platform::RUBY
10
+ s.authors = ["Cyrille Bourgois"]
11
+ s.email = ["cyrille.bourgois@gmail.com"]
12
+ s.homepage = "https://github.com/cbourgois/crushinator"
13
+ s.summary = Crushinator::SUMMARY
14
+ s.description = Crushinator::DESCRIPTION
15
+
16
+ s.has_rdoc = false
17
+ s.extra_rdoc_files = ["README.md"]
18
+ s.rdoc_options = ["--charset=UTF-8"]
19
+ s.files = `git ls-files `.split("\n")
20
+ # s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
+ # s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
22
+ s.require_paths = ["lib"]
23
+
24
+ end
@@ -0,0 +1,14 @@
1
+ module Crushinator
2
+
3
+ #----------------------------------------------------------------------------
4
+
5
+ VERSION = "0.0.0"
6
+ SUMMARY = "Automatic animation crushinator"
7
+ DESCRIPTION = "Create Crushinator style css animation from animation sequence files"
8
+ LIB = File.dirname(__FILE__)
9
+
10
+ def self.run
11
+ puts "Crushinator"
12
+ end
13
+
14
+ end
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: crushinator
3
+ version: !ruby/object:Gem::Version
4
+ hash: 31
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 0
10
+ version: 0.0.0
11
+ platform: ruby
12
+ authors:
13
+ - Cyrille Bourgois
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2013-02-06 00:00:00 Z
19
+ dependencies: []
20
+
21
+ description: Create Crushinator style css animation from animation sequence files
22
+ email:
23
+ - cyrille.bourgois@gmail.com
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - README.md
30
+ files:
31
+ - README.md
32
+ - crushinator.gemspec
33
+ - lib/crushinator.rb
34
+ homepage: https://github.com/cbourgois/crushinator
35
+ licenses: []
36
+
37
+ post_install_message:
38
+ rdoc_options:
39
+ - --charset=UTF-8
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ hash: 3
48
+ segments:
49
+ - 0
50
+ version: "0"
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ hash: 3
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ requirements: []
61
+
62
+ rubyforge_project:
63
+ rubygems_version: 1.8.24
64
+ signing_key:
65
+ specification_version: 3
66
+ summary: Automatic animation crushinator
67
+ test_files: []
68
+