specialk 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.aprrc +10 -0
- data/.document +5 -0
- data/.irbrc +57 -0
- data/.rspec +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +22 -0
- data/Gemfile.lock +132 -0
- data/LICENSE +20 -0
- data/LICENSE.txt +20 -0
- data/README.md +4 -0
- data/README.rdoc +19 -0
- data/Rakefile +42 -0
- data/VERSION +1 -0
- data/config/routes.rb +2 -0
- data/lib/extentions/action_controller/base.rb +2 -0
- data/lib/specialk.rb +5 -0
- data/lib/specialk/engine.rb +9 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/specialk_spec.rb +7 -0
- data/specialk.gemspec +90 -0
- metadata +210 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3c90cc9b829aab2b032a2fe5315d960363f9dbcb
|
4
|
+
data.tar.gz: 0444d5f8bf39ad334b961d17600e3662818136ce
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 716e5aeb62438e713617c90501cd6d0e90dc9fe243d8786b9c13c549e16350c5ee05e5925c54adb1a96779dbcf1ea0b9a43bf5de231685784022cf7e200e2b40
|
7
|
+
data.tar.gz: 8af9f71ecab863a08e1c3db3bacc798173324ef9f11bb8860063febc7305c2dbe5fd7723efba87c17090d1f09553ce4503c1568b6980d30d8f935c13c9a796ec
|
data/.aprrc
ADDED
data/.document
ADDED
data/.irbrc
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
require 'irb/completion'
|
3
|
+
require 'rubygems'
|
4
|
+
require 'wirble'
|
5
|
+
|
6
|
+
Wirble.init
|
7
|
+
Wirble.colorize
|
8
|
+
|
9
|
+
AwesomePrint.irb!
|
10
|
+
AwesomePrint.pry!
|
11
|
+
|
12
|
+
def fuckme
|
13
|
+
puts 'show-models #to view model info'
|
14
|
+
puts 'show-models #to view model info'
|
15
|
+
end
|
16
|
+
|
17
|
+
#reloader
|
18
|
+
def reloader!
|
19
|
+
reload!
|
20
|
+
Fabrication.clear_definitions
|
21
|
+
require '.irbrc'
|
22
|
+
puts 'Rails ENV Reset'
|
23
|
+
puts 'Fabrication Reset'
|
24
|
+
puts 'Reload .irbrc'
|
25
|
+
end
|
26
|
+
|
27
|
+
def rst!
|
28
|
+
reloader!
|
29
|
+
end
|
30
|
+
|
31
|
+
#sync
|
32
|
+
def sync_enable
|
33
|
+
if Sync
|
34
|
+
Sync::Model.enable!
|
35
|
+
sync_status;
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def sync_disable
|
40
|
+
if Sync
|
41
|
+
Sync::Model.disable!
|
42
|
+
sync_status;
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def sync_status
|
47
|
+
if Sync
|
48
|
+
if Sync::Model.enabled?
|
49
|
+
puts "Sync is enabled";
|
50
|
+
else
|
51
|
+
puts "Sync is disabled";
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
sync_enable
|
57
|
+
|
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
specialk
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.0.0
|
data/Gemfile
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
|
3
|
+
gem 'awesome_print'
|
4
|
+
gem 'hirb'
|
5
|
+
gem 'fabrication-rails'
|
6
|
+
gem 'squeel'
|
7
|
+
gem 'wirble'
|
8
|
+
|
9
|
+
group :development, :test do
|
10
|
+
gem 'pry-rails'
|
11
|
+
end
|
12
|
+
|
13
|
+
group :doc do
|
14
|
+
gem 'sdoc', require: false
|
15
|
+
end
|
16
|
+
|
17
|
+
group :development do
|
18
|
+
gem "rspec", "~> 2.8.0"
|
19
|
+
gem "rdoc", "~> 3.12"
|
20
|
+
gem "bundler", "~> 1.0"
|
21
|
+
gem "jeweler", "~> 1.8.7"
|
22
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actionpack (4.0.1)
|
5
|
+
activesupport (= 4.0.1)
|
6
|
+
builder (~> 3.1.0)
|
7
|
+
erubis (~> 2.7.0)
|
8
|
+
rack (~> 1.5.2)
|
9
|
+
rack-test (~> 0.6.2)
|
10
|
+
activemodel (4.0.1)
|
11
|
+
activesupport (= 4.0.1)
|
12
|
+
builder (~> 3.1.0)
|
13
|
+
activerecord (4.0.1)
|
14
|
+
activemodel (= 4.0.1)
|
15
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
16
|
+
activesupport (= 4.0.1)
|
17
|
+
arel (~> 4.0.0)
|
18
|
+
activerecord-deprecated_finders (1.0.3)
|
19
|
+
activesupport (4.0.1)
|
20
|
+
i18n (~> 0.6, >= 0.6.4)
|
21
|
+
minitest (~> 4.2)
|
22
|
+
multi_json (~> 1.3)
|
23
|
+
thread_safe (~> 0.1)
|
24
|
+
tzinfo (~> 0.3.37)
|
25
|
+
addressable (2.3.5)
|
26
|
+
arel (4.0.1)
|
27
|
+
atomic (1.1.14)
|
28
|
+
awesome_print (1.2.0)
|
29
|
+
builder (3.1.4)
|
30
|
+
coderay (1.1.0)
|
31
|
+
diff-lcs (1.1.3)
|
32
|
+
erubis (2.7.0)
|
33
|
+
fabrication (2.9.3)
|
34
|
+
fabrication-rails (0.0.1)
|
35
|
+
fabrication
|
36
|
+
railties (>= 3.0)
|
37
|
+
faraday (0.8.8)
|
38
|
+
multipart-post (~> 1.2.0)
|
39
|
+
git (1.2.6)
|
40
|
+
github_api (0.10.1)
|
41
|
+
addressable
|
42
|
+
faraday (~> 0.8.1)
|
43
|
+
hashie (>= 1.2)
|
44
|
+
multi_json (~> 1.4)
|
45
|
+
nokogiri (~> 1.5.2)
|
46
|
+
oauth2
|
47
|
+
hashie (2.0.5)
|
48
|
+
highline (1.6.20)
|
49
|
+
hirb (0.7.1)
|
50
|
+
httpauth (0.2.0)
|
51
|
+
i18n (0.6.5)
|
52
|
+
jeweler (1.8.8)
|
53
|
+
builder
|
54
|
+
bundler (~> 1.0)
|
55
|
+
git (>= 1.2.5)
|
56
|
+
github_api (= 0.10.1)
|
57
|
+
highline (>= 1.6.15)
|
58
|
+
nokogiri (= 1.5.10)
|
59
|
+
rake
|
60
|
+
rdoc
|
61
|
+
json (1.8.1)
|
62
|
+
jwt (0.1.8)
|
63
|
+
multi_json (>= 1.5)
|
64
|
+
method_source (0.8.2)
|
65
|
+
minitest (4.7.5)
|
66
|
+
multi_json (1.8.2)
|
67
|
+
multi_xml (0.5.5)
|
68
|
+
multipart-post (1.2.0)
|
69
|
+
nokogiri (1.5.10)
|
70
|
+
oauth2 (0.9.2)
|
71
|
+
faraday (~> 0.8)
|
72
|
+
httpauth (~> 0.2)
|
73
|
+
jwt (~> 0.1.4)
|
74
|
+
multi_json (~> 1.0)
|
75
|
+
multi_xml (~> 0.5)
|
76
|
+
rack (~> 1.2)
|
77
|
+
polyamorous (0.6.4)
|
78
|
+
activerecord (>= 3.0)
|
79
|
+
pry (0.9.12.3)
|
80
|
+
coderay (~> 1.0)
|
81
|
+
method_source (~> 0.8)
|
82
|
+
slop (~> 3.4)
|
83
|
+
pry-rails (0.3.2)
|
84
|
+
pry (>= 0.9.10)
|
85
|
+
rack (1.5.2)
|
86
|
+
rack-test (0.6.2)
|
87
|
+
rack (>= 1.0)
|
88
|
+
railties (4.0.1)
|
89
|
+
actionpack (= 4.0.1)
|
90
|
+
activesupport (= 4.0.1)
|
91
|
+
rake (>= 0.8.7)
|
92
|
+
thor (>= 0.18.1, < 2.0)
|
93
|
+
rake (10.1.0)
|
94
|
+
rdoc (3.12.2)
|
95
|
+
json (~> 1.4)
|
96
|
+
rspec (2.8.0)
|
97
|
+
rspec-core (~> 2.8.0)
|
98
|
+
rspec-expectations (~> 2.8.0)
|
99
|
+
rspec-mocks (~> 2.8.0)
|
100
|
+
rspec-core (2.8.0)
|
101
|
+
rspec-expectations (2.8.0)
|
102
|
+
diff-lcs (~> 1.1.2)
|
103
|
+
rspec-mocks (2.8.0)
|
104
|
+
sdoc (0.3.20)
|
105
|
+
json (>= 1.1.3)
|
106
|
+
rdoc (~> 3.10)
|
107
|
+
slop (3.4.7)
|
108
|
+
squeel (1.1.1)
|
109
|
+
activerecord (>= 3.0)
|
110
|
+
activesupport (>= 3.0)
|
111
|
+
polyamorous (~> 0.6.0)
|
112
|
+
thor (0.18.1)
|
113
|
+
thread_safe (0.1.3)
|
114
|
+
atomic
|
115
|
+
tzinfo (0.3.38)
|
116
|
+
wirble (0.1.3)
|
117
|
+
|
118
|
+
PLATFORMS
|
119
|
+
ruby
|
120
|
+
|
121
|
+
DEPENDENCIES
|
122
|
+
awesome_print
|
123
|
+
bundler (~> 1.0)
|
124
|
+
fabrication-rails
|
125
|
+
hirb
|
126
|
+
jeweler (~> 1.8.7)
|
127
|
+
pry-rails
|
128
|
+
rdoc (~> 3.12)
|
129
|
+
rspec (~> 2.8.0)
|
130
|
+
sdoc
|
131
|
+
squeel
|
132
|
+
wirble
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2013 SouthFloridaRails
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
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, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2013 Moises Zaragoza
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/README.rdoc
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
= specialk
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Contributing to specialk
|
6
|
+
|
7
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
8
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
9
|
+
* Fork the project.
|
10
|
+
* Start a feature/bugfix branch.
|
11
|
+
* Commit and push until you are happy with your contribution.
|
12
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
13
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2013 Moises Zaragoza. See LICENSE.txt for
|
18
|
+
further details.
|
19
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
|
14
|
+
require 'jeweler'
|
15
|
+
Jeweler::Tasks.new do |gem|
|
16
|
+
gem.name = "specialk"
|
17
|
+
gem.homepage = "http://github.com/southfloridarails/specialk"
|
18
|
+
gem.license = "MIT"
|
19
|
+
gem.summary = %Q{Specialize Yo Konsole}
|
20
|
+
gem.description = %Q{Make me fabulous}
|
21
|
+
gem.email = "mZaragoza@circletechfl.com"
|
22
|
+
gem.authors = ["Moises Zaragoza", "Paul Kruger","Aldo Delgado"]
|
23
|
+
end
|
24
|
+
Jeweler::RubygemsDotOrgTasks.new
|
25
|
+
|
26
|
+
require 'rspec/core'
|
27
|
+
require 'rspec/core/rake_task'
|
28
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
29
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
30
|
+
end
|
31
|
+
|
32
|
+
task :default => :spec
|
33
|
+
|
34
|
+
require 'rdoc/task'
|
35
|
+
Rake::RDocTask.new do |rdoc|
|
36
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
37
|
+
|
38
|
+
rdoc.rdoc_dir = 'rdoc'
|
39
|
+
rdoc.title = "specialk #{version}"
|
40
|
+
rdoc.rdoc_files.include('README*')
|
41
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
42
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/config/routes.rb
ADDED
data/lib/specialk.rb
ADDED
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
3
|
+
require 'rspec'
|
4
|
+
require 'specialk'
|
5
|
+
|
6
|
+
# Requires supporting files with custom matchers and macros, etc,
|
7
|
+
# in ./support/ and its subdirectories.
|
8
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
9
|
+
|
10
|
+
RSpec.configure do |config|
|
11
|
+
|
12
|
+
end
|
data/specialk.gemspec
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
# stub: specialk 0.1.0 ruby lib
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "specialk"
|
9
|
+
s.version = "0.1.0"
|
10
|
+
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
|
+
s.authors = ["Moises Zaragoza", "Paul Kruger", "Aldo Delgado"]
|
13
|
+
s.date = "2013-11-22"
|
14
|
+
s.description = "Make me fabulous"
|
15
|
+
s.email = "mZaragoza@circletechfl.com"
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE",
|
18
|
+
"LICENSE.txt",
|
19
|
+
"README.md",
|
20
|
+
"README.rdoc"
|
21
|
+
]
|
22
|
+
s.files = [
|
23
|
+
".aprrc",
|
24
|
+
".document",
|
25
|
+
".irbrc",
|
26
|
+
".rspec",
|
27
|
+
".ruby-gemset",
|
28
|
+
".ruby-version",
|
29
|
+
"Gemfile",
|
30
|
+
"Gemfile.lock",
|
31
|
+
"LICENSE",
|
32
|
+
"LICENSE.txt",
|
33
|
+
"README.md",
|
34
|
+
"README.rdoc",
|
35
|
+
"Rakefile",
|
36
|
+
"VERSION",
|
37
|
+
"config/routes.rb",
|
38
|
+
"lib/extentions/action_controller/base.rb",
|
39
|
+
"lib/specialk.rb",
|
40
|
+
"lib/specialk/engine.rb",
|
41
|
+
"spec/spec_helper.rb",
|
42
|
+
"spec/specialk_spec.rb",
|
43
|
+
"specialk.gemspec"
|
44
|
+
]
|
45
|
+
s.homepage = "http://github.com/southfloridarails/specialk"
|
46
|
+
s.licenses = ["MIT"]
|
47
|
+
s.require_paths = ["lib"]
|
48
|
+
s.rubygems_version = "2.1.10"
|
49
|
+
s.summary = "Specialize Yo Konsole"
|
50
|
+
|
51
|
+
if s.respond_to? :specification_version then
|
52
|
+
s.specification_version = 4
|
53
|
+
|
54
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
55
|
+
s.add_runtime_dependency(%q<awesome_print>, [">= 0"])
|
56
|
+
s.add_runtime_dependency(%q<hirb>, [">= 0"])
|
57
|
+
s.add_runtime_dependency(%q<fabrication-rails>, [">= 0"])
|
58
|
+
s.add_runtime_dependency(%q<squeel>, [">= 0"])
|
59
|
+
s.add_runtime_dependency(%q<wirble>, [">= 0"])
|
60
|
+
s.add_development_dependency(%q<pry-rails>, [">= 0"])
|
61
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
|
62
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
63
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
|
64
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.8.7"])
|
65
|
+
else
|
66
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
67
|
+
s.add_dependency(%q<hirb>, [">= 0"])
|
68
|
+
s.add_dependency(%q<fabrication-rails>, [">= 0"])
|
69
|
+
s.add_dependency(%q<squeel>, [">= 0"])
|
70
|
+
s.add_dependency(%q<wirble>, [">= 0"])
|
71
|
+
s.add_dependency(%q<pry-rails>, [">= 0"])
|
72
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
73
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
74
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
75
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.7"])
|
76
|
+
end
|
77
|
+
else
|
78
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
79
|
+
s.add_dependency(%q<hirb>, [">= 0"])
|
80
|
+
s.add_dependency(%q<fabrication-rails>, [">= 0"])
|
81
|
+
s.add_dependency(%q<squeel>, [">= 0"])
|
82
|
+
s.add_dependency(%q<wirble>, [">= 0"])
|
83
|
+
s.add_dependency(%q<pry-rails>, [">= 0"])
|
84
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
85
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
86
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
87
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.7"])
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
metadata
ADDED
@@ -0,0 +1,210 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: specialk
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Moises Zaragoza
|
8
|
+
- Paul Kruger
|
9
|
+
- Aldo Delgado
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2013-11-22 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: awesome_print
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - '>='
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '0'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: hirb
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - '>='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - '>='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: fabrication-rails
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - '>='
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
type: :runtime
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: squeel
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
type: :runtime
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: wirble
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: pry-rails
|
87
|
+
requirement: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - '>='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
type: :development
|
93
|
+
prerelease: false
|
94
|
+
version_requirements: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
- !ruby/object:Gem::Dependency
|
100
|
+
name: rspec
|
101
|
+
requirement: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ~>
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: 2.8.0
|
106
|
+
type: :development
|
107
|
+
prerelease: false
|
108
|
+
version_requirements: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ~>
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 2.8.0
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: rdoc
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ~>
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '3.12'
|
120
|
+
type: :development
|
121
|
+
prerelease: false
|
122
|
+
version_requirements: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ~>
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '3.12'
|
127
|
+
- !ruby/object:Gem::Dependency
|
128
|
+
name: bundler
|
129
|
+
requirement: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - ~>
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '1.0'
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ~>
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '1.0'
|
141
|
+
- !ruby/object:Gem::Dependency
|
142
|
+
name: jeweler
|
143
|
+
requirement: !ruby/object:Gem::Requirement
|
144
|
+
requirements:
|
145
|
+
- - ~>
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: 1.8.7
|
148
|
+
type: :development
|
149
|
+
prerelease: false
|
150
|
+
version_requirements: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - ~>
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: 1.8.7
|
155
|
+
description: Make me fabulous
|
156
|
+
email: mZaragoza@circletechfl.com
|
157
|
+
executables: []
|
158
|
+
extensions: []
|
159
|
+
extra_rdoc_files:
|
160
|
+
- LICENSE
|
161
|
+
- LICENSE.txt
|
162
|
+
- README.md
|
163
|
+
- README.rdoc
|
164
|
+
files:
|
165
|
+
- .aprrc
|
166
|
+
- .document
|
167
|
+
- .irbrc
|
168
|
+
- .rspec
|
169
|
+
- .ruby-gemset
|
170
|
+
- .ruby-version
|
171
|
+
- Gemfile
|
172
|
+
- Gemfile.lock
|
173
|
+
- LICENSE
|
174
|
+
- LICENSE.txt
|
175
|
+
- README.md
|
176
|
+
- README.rdoc
|
177
|
+
- Rakefile
|
178
|
+
- VERSION
|
179
|
+
- config/routes.rb
|
180
|
+
- lib/extentions/action_controller/base.rb
|
181
|
+
- lib/specialk.rb
|
182
|
+
- lib/specialk/engine.rb
|
183
|
+
- spec/spec_helper.rb
|
184
|
+
- spec/specialk_spec.rb
|
185
|
+
- specialk.gemspec
|
186
|
+
homepage: http://github.com/southfloridarails/specialk
|
187
|
+
licenses:
|
188
|
+
- MIT
|
189
|
+
metadata: {}
|
190
|
+
post_install_message:
|
191
|
+
rdoc_options: []
|
192
|
+
require_paths:
|
193
|
+
- lib
|
194
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
195
|
+
requirements:
|
196
|
+
- - '>='
|
197
|
+
- !ruby/object:Gem::Version
|
198
|
+
version: '0'
|
199
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
200
|
+
requirements:
|
201
|
+
- - '>='
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
version: '0'
|
204
|
+
requirements: []
|
205
|
+
rubyforge_project:
|
206
|
+
rubygems_version: 2.1.10
|
207
|
+
signing_key:
|
208
|
+
specification_version: 4
|
209
|
+
summary: Specialize Yo Konsole
|
210
|
+
test_files: []
|