charcoalcms 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.
metadata CHANGED
@@ -1,38 +1,48 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: charcoalcms
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
- - Nik | Polikin.ca
13
+ - Nik
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
18
  date: 2013-06-10 00:00:00 Z
19
- dependencies: []
20
-
21
- description: CharcoalCms GEM
22
- email: responsiveness@polikin.ca
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: compass
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
31
+ version: "0"
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ description: Custom Sass/Compass mixins & responsive grid
35
+ email:
36
+ - responsiveness@polikin.ca
23
37
  executables: []
24
38
 
25
39
  extensions: []
26
40
 
27
41
  extra_rdoc_files: []
28
42
 
29
- files:
30
- - Rakefile
31
- - lib/charcoalcms.rb
32
- - lib/charcoalcms/translator.rb
33
- - bin/charcoalcms
34
- - test/test_charcoalcms.rb
35
- homepage: http://rubygems.org/gems/charcoalcms
43
+ files: []
44
+
45
+ homepage: https://github.com/theresponsiveness/
36
46
  licenses: []
37
47
 
38
48
  post_install_message:
@@ -64,6 +74,6 @@ rubyforge_project:
64
74
  rubygems_version: 1.8.25
65
75
  signing_key:
66
76
  specification_version: 3
67
- summary: charcoalcms!
68
- test_files:
69
- - test/test_charcoalcms.rb
77
+ summary: getskeleton (960 || http://getskeleton.com/, 1200 || https://github.com/theresponsiveness/GetSkeleton1200, Responsify || http://app.responsify.it/
78
+ test_files: []
79
+
data/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- require 'rake/testtask'
2
-
3
- Rake::TestTask.new do |t|
4
- t.libs << 'test'
5
- end
6
-
7
- desc "Run tests"
8
- task :default => :test
data/bin/charcoalcms DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'charcoalcms'
4
- puts CharcoalCms.hi(ARGV[0])
@@ -1,16 +0,0 @@
1
- class CharcoalCms::Translator
2
- def initialize(language = "english")
3
- @language = language
4
- end
5
-
6
- def hi
7
- case @language
8
- when "spanish"
9
- "hola mundo"
10
- when "korean"
11
- "anyoung ha se yo"
12
- else
13
- "hello world"
14
- end
15
- end
16
- end
data/lib/charcoalcms.rb DELETED
@@ -1,8 +0,0 @@
1
- class CharcoalCms
2
- def self.hi(language)
3
- translator = Translator.new(language)
4
- translator.hi
5
- end
6
- end
7
-
8
- require 'charcoalcms/translator'
@@ -1,16 +0,0 @@
1
- require 'test/unit'
2
- require 'charcoalcms'
3
-
4
- class CharcoalCmsTest < Test::Unit::TestCase
5
- def test_english_hello
6
- assert_equal "hello world", CharcoalCms.hi("english")
7
- end
8
-
9
- def test_any_hello
10
- assert_equal "hello world", CharcoalCms.hi("ruby")
11
- end
12
-
13
- def test_spanish_hello
14
- assert_equal "CharcoalCms mundo", CharcoalCms.hi("spanish")
15
- end
16
- end