orats 0.2.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.
- checksums.yaml +7 -0
- data/.gitignore +7 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +19 -0
- data/LICENSE.txt +22 -0
- data/README.md +199 -0
- data/Rakefile +1 -0
- data/bin/orats +17 -0
- data/lib/orats.rb +5 -0
- data/lib/orats/cli.rb +89 -0
- data/lib/orats/server.rb +50 -0
- data/lib/orats/shell.rb +49 -0
- data/lib/orats/templates/commands/auth.rb +853 -0
- data/lib/orats/templates/commands/base.rb +809 -0
- data/lib/orats/templates/includes/Gemfile +46 -0
- data/lib/orats/version.rb +3 -0
- data/orats.gemspec +25 -0
- metadata +104 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gem 'rails', '4.0.2'
|
4
|
+
gem 'turbolinks', '~> 1.3.1'
|
5
|
+
gem 'jquery-rails', '~> 3.0.4'
|
6
|
+
gem 'jquery-turbolinks', '~> 2.0.1'
|
7
|
+
gem 'bootstrap-sass', '~> 3.0.1'
|
8
|
+
gem 'font-awesome-rails', '~> 4.0.3.1'
|
9
|
+
|
10
|
+
gem 'custom_configuration'
|
11
|
+
|
12
|
+
gem 'pg'
|
13
|
+
gem 'redis-rails', '~> 4.0.0'
|
14
|
+
|
15
|
+
gem 'puma', '~> 2.7.1'
|
16
|
+
gem 'sidekiq', '~> 2.17.4'
|
17
|
+
gem 'sinatra', '>= 1.3.0', require: false
|
18
|
+
gem 'whenever', require: false
|
19
|
+
#gem 'jbuilder'
|
20
|
+
|
21
|
+
gem 'kaminari', '~> 0.15.1'
|
22
|
+
|
23
|
+
gem 'sitemap_generator', '~> 4.3.1'
|
24
|
+
gem 'favicon_maker', '~> 1.1.0'
|
25
|
+
|
26
|
+
group :development do
|
27
|
+
gem 'foreman', '>= 0.63.0', require: false
|
28
|
+
gem 'rack-mini-profiler'
|
29
|
+
gem 'bullet', '~> 4.7.1'
|
30
|
+
gem 'meta_request'
|
31
|
+
gem 'railroady', '~> 1.1.1', require: false
|
32
|
+
end
|
33
|
+
|
34
|
+
group :development, :test do
|
35
|
+
gem 'dotenv-rails', '~> 0.9.0'
|
36
|
+
end
|
37
|
+
|
38
|
+
group :assets do
|
39
|
+
gem 'sass-rails', '~> 4.0.1'
|
40
|
+
gem 'coffee-rails', '~> 4.0.1'
|
41
|
+
gem 'uglifier', '~> 2.4.0'
|
42
|
+
end
|
43
|
+
|
44
|
+
group :doc do
|
45
|
+
gem 'sdoc', '~> 0.4.0', require: false
|
46
|
+
end
|
data/orats.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'orats/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'orats'
|
8
|
+
spec.version = Orats::VERSION
|
9
|
+
spec.authors = ['Nick Janetakis']
|
10
|
+
spec.email = ['nick.janetakis@gmail.com']
|
11
|
+
spec.summary = %q{Opinionated rails application templates.}
|
12
|
+
spec.description = %q{A collection of rails application templates using modern versions of Ruby on Rails. Launch new applications and the infrastructure to run them in seconds.}
|
13
|
+
spec.homepage = 'https://github.com/nickjj/orats'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
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_dependency 'thor', '~> 0'
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.5'
|
24
|
+
spec.add_development_dependency 'rake', '~> 0'
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: orats
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nick Janetakis
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: thor
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.5'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.5'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: A collection of rails application templates using modern versions of
|
56
|
+
Ruby on Rails. Launch new applications and the infrastructure to run them in seconds.
|
57
|
+
email:
|
58
|
+
- nick.janetakis@gmail.com
|
59
|
+
executables:
|
60
|
+
- orats
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- ".gitignore"
|
65
|
+
- Gemfile
|
66
|
+
- Gemfile.lock
|
67
|
+
- LICENSE.txt
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- bin/orats
|
71
|
+
- lib/orats.rb
|
72
|
+
- lib/orats/cli.rb
|
73
|
+
- lib/orats/server.rb
|
74
|
+
- lib/orats/shell.rb
|
75
|
+
- lib/orats/templates/commands/auth.rb
|
76
|
+
- lib/orats/templates/commands/base.rb
|
77
|
+
- lib/orats/templates/includes/Gemfile
|
78
|
+
- lib/orats/version.rb
|
79
|
+
- orats.gemspec
|
80
|
+
homepage: https://github.com/nickjj/orats
|
81
|
+
licenses:
|
82
|
+
- MIT
|
83
|
+
metadata: {}
|
84
|
+
post_install_message:
|
85
|
+
rdoc_options: []
|
86
|
+
require_paths:
|
87
|
+
- lib
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
requirements: []
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 2.2.0
|
101
|
+
signing_key:
|
102
|
+
specification_version: 4
|
103
|
+
summary: Opinionated rails application templates.
|
104
|
+
test_files: []
|