synculus-codex 0.0.0

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.
data/.gitignore ADDED
@@ -0,0 +1,84 @@
1
+ # bundler state
2
+ /.bundle
3
+ /vendor/bundle/
4
+ /vendor/ruby/
5
+
6
+ # minimal Rails specific artifacts
7
+ db/*.sqlite3
8
+ /log/*
9
+ /tmp/*
10
+
11
+ # various artifacts
12
+ *.gem
13
+ **.war
14
+ *.rbc
15
+ *.sassc
16
+ .rspec
17
+ .redcar/
18
+ .sass-cache
19
+ /config/config.yml
20
+ /config/database.yml
21
+ /coverage.data
22
+ /coverage/
23
+ /db/*.javadb/
24
+ /db/*.sqlite3
25
+ /doc/api/
26
+ /doc/app/
27
+ /doc/features.html
28
+ /doc/specs.html
29
+ /public/cache
30
+ /public/stylesheets/compiled
31
+ /public/system/*
32
+ /spec/tmp/*
33
+ /cache
34
+ /capybara*
35
+ /capybara-*.html
36
+ /gems
37
+ /specifications
38
+ rerun.txt
39
+ pickle-email-*.html
40
+
41
+ # If you find yourself ignoring temporary files generated by your text editor
42
+ # or operating system, you probably want to add a global ignore instead:
43
+ # git config --global core.excludesfile ~/.gitignore_global
44
+ #
45
+ # Here are some files you may want to ignore globally:
46
+
47
+ # scm revert files
48
+ **.orig
49
+
50
+
51
+ # Mac finder artifacts
52
+ .DS_Store
53
+
54
+ # Netbeans project directory
55
+ /nbproject/
56
+
57
+ # RubyMine project files
58
+ .idea
59
+
60
+ # Textmate project files
61
+ /*.tmproj
62
+
63
+ # vim artifacts
64
+ **.swp
65
+
66
+ # Ignore application configuration
67
+ /config/application.yml
68
+ =======
69
+ *.rbc
70
+ *.sassc
71
+ .sass-cache
72
+ capybara-*.html
73
+ .rspec
74
+ /.bundle
75
+ /vendor/bundle
76
+ /log/*
77
+ /tmp/*
78
+ /db/*.sqlite3
79
+ /public/system/*
80
+ /coverage/
81
+ /spec/tmp/*
82
+ **.orig
83
+ rerun.txt
84
+ pickle-email-*.html
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-1.9.3-p392
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Gem dependencies specified in synculus-codex.gemspec
4
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT License
2
+
3
+ Copyright (c) 2013 [Synculus](http://synculus.com)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Synculus Codex - Version 0.0.0
2
+
3
+ This is a gem placeholder for the Synculus Codex - Knowledge Base
4
+
5
+ Something awesome is in the works...
6
+ Synculus - Coming Soon!
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,5 @@
1
+ module Synculus
2
+ module Codex
3
+ VERSION = "0.0.0"
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ require "synculus/codex/version"
2
+
3
+ module Synculus
4
+ module Codex
5
+ # Something awesome is in the works...
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'synculus/codex/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "synculus-codex"
8
+ spec.version = Synculus::Codex::VERSION
9
+ spec.authors = ["AJ Acevedo | Mike Barnard | Eric Franson"]
10
+ spec.email = ["aj@ajalabs.com"]
11
+ spec.description = %q{Synculus Codex - A Knowledge Base powered by Synculus}
12
+ spec.summary = %q{Synculus Codex - A Knowledge Base powered by Synculus}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: synculus-codex
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - AJ Acevedo | Mike Barnard | Eric Franson
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-04-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: Synculus Codex - A Knowledge Base powered by Synculus
47
+ email:
48
+ - aj@ajalabs.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - .gitignore
54
+ - .ruby-version
55
+ - Gemfile
56
+ - LICENSE.md
57
+ - README.md
58
+ - Rakefile
59
+ - lib/synculus/codex.rb
60
+ - lib/synculus/codex/version.rb
61
+ - synculus-codex.gemspec
62
+ homepage: ''
63
+ licenses:
64
+ - MIT
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ! '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ none: false
77
+ requirements:
78
+ - - ! '>='
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ requirements: []
82
+ rubyforge_project:
83
+ rubygems_version: 1.8.25
84
+ signing_key:
85
+ specification_version: 3
86
+ summary: Synculus Codex - A Knowledge Base powered by Synculus
87
+ test_files: []