cuchitril-soul 0.0.0.dev

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.
Binary file
Binary file
Binary file
@@ -0,0 +1,23 @@
1
+ # Encoding: UTF-8
2
+ $:.push File.expand_path('../../soul/lib', __FILE__)
3
+ require 'cuchitril/version'
4
+
5
+ version = Cuchitril::Version.to_s
6
+ rails_version = ['>= 3.1.3', '< 3.3']
7
+
8
+ Gem::Specification.new do |s|
9
+ s.platform = Gem::Platform::RUBY
10
+ s.name = %q{cuchitril-soul}
11
+ s.version = version
12
+ s.summary = %q{Cuchitril Soul}
13
+ s.description = %q{The soul of cuchitril CMS. This handles the basic functionality }
14
+ s.email = %q{rodacato@gmail.com}
15
+ s.homepage = %q{http://cuchitril.therubyists.com}
16
+ s.rubyforge_project = %q{cuchitril}
17
+ s.authors = ['Adrian Castillo']
18
+ s.license = %q{MIT}
19
+ s.require_paths = %w(lib)
20
+
21
+ s.files = `git ls-files`.split("\n")
22
+ s.test_files = `git ls-files -- spec/*`.split("\n")
23
+ end
Binary file
@@ -0,0 +1 @@
1
+ require 'cuchitril/soul'
@@ -0,0 +1,10 @@
1
+ module Cuchitril
2
+ module Soul
3
+
4
+ class << self
5
+ def root
6
+ @root ||= Pathname.new(File.expand_path('../../../', __FILE__))
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,16 @@
1
+ module Cuchitril
2
+ class Version
3
+ @major = 0
4
+ @minor = 0
5
+ @tiny = 0
6
+ @build = 'dev'
7
+
8
+ class << self
9
+ attr_reader :major, :minor, :tiny, :build
10
+
11
+ def to_s
12
+ [@major, @minor, @tiny, @build].compact.join('.')
13
+ end
14
+ end
15
+ end
16
+ end
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cuchitril-soul
3
+ version: !ruby/object:Gem::Version
4
+ hash: 858800316
5
+ prerelease: 6
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 0
10
+ - dev
11
+ version: 0.0.0.dev
12
+ platform: ruby
13
+ authors:
14
+ - Adrian Castillo
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2012-03-22 00:00:00 -06:00
20
+ default_executable:
21
+ dependencies: []
22
+
23
+ description: "The soul of cuchitril CMS. This handles the basic functionality "
24
+ email: rodacato@gmail.com
25
+ executables: []
26
+
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .DS_Store
33
+ - app/.DS_Store
34
+ - config/.DS_Store
35
+ - cuchitril-soul.gemspec
36
+ - lib/.DS_Store
37
+ - lib/cuchitril-soul.rb
38
+ - lib/cuchitril/soul.rb
39
+ - lib/cuchitril/version.rb
40
+ - public/.DS_Store
41
+ - spec/.DS_Store
42
+ has_rdoc: true
43
+ homepage: http://cuchitril.therubyists.com
44
+ licenses:
45
+ - MIT
46
+ post_install_message:
47
+ rdoc_options: []
48
+
49
+ require_paths:
50
+ - lib
51
+ required_ruby_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
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ">"
64
+ - !ruby/object:Gem::Version
65
+ hash: 25
66
+ segments:
67
+ - 1
68
+ - 3
69
+ - 1
70
+ version: 1.3.1
71
+ requirements: []
72
+
73
+ rubyforge_project: cuchitril
74
+ rubygems_version: 1.6.2
75
+ signing_key:
76
+ specification_version: 3
77
+ summary: Cuchitril Soul
78
+ test_files:
79
+ - spec/.DS_Store