noa 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2e9a7a7bc287861a43a2531cb1ab444361ce37a0
4
+ data.tar.gz: 2a35fb6fc894566a09cc503953d0ad45dea2fe12
5
+ SHA512:
6
+ metadata.gz: 1a4666ebaf2475d40e5f6771f9570f83322305c611e8298e1e483ae079dede7a2f472d46f5caaad8fa8751e2cd980e415c0d10531849483bcc6a699a85d705e0
7
+ data.tar.gz: 59bce58efe8643ef0feffe4122356ad919dbc4f8a176fe505be6784f4361b2f9deeafb7244d7ee5b441b4db2f16b1b007d2c7555e12bb1c893b34a9b48ca5034
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Jari Jokinen
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,35 @@
1
+ # Noa
2
+
3
+ Noa is a web application framework for Ruby on Rails. Its modular design allows
4
+ developers to create production-ready, fully-customizable web applications like
5
+ blogs, shopping carts or photo galleries in minutes.
6
+
7
+ ## Requirements
8
+
9
+ * Ruby 2.0 or newer
10
+ * Ruby on Rails 4.0 or newer
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ gem "noa"
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install noa
25
+
26
+ ## Support
27
+
28
+ If you have any issues with Noa, or if you like to report a bug, please create
29
+ an [issue on GitHub](https://github.com/jarijokinen/noa/issues).
30
+
31
+ ## License
32
+
33
+ MIT License. Copyright (c) 2013 Jari Jokinen. See
34
+ [LICENSE](https://github.com/jarijokinen/noa/blob/master/LICENSE.txt) for
35
+ further details.
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ require "noa/version"
2
+
3
+ module Noa
4
+ end
@@ -0,0 +1,3 @@
1
+ module Noa
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "noa/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "noa"
8
+ spec.version = Noa::VERSION
9
+ spec.authors = ["Jari Jokinen"]
10
+ spec.email = ["info@jarijokinen.com"]
11
+ spec.summary = "Web application framework for Ruby on Rails"
12
+ spec.description = "Web application framework for Ruby on Rails"
13
+ spec.homepage = "https://github.com/jarijokinen/noa"
14
+ spec.license = "MIT"
15
+
16
+ spec.rubyforge_project = "noa"
17
+ spec.files = `git ls-files`.split($/)
18
+ spec.require_path = "lib"
19
+
20
+ spec.add_dependency "noa-core", "0.0.1"
21
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: noa
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jari Jokinen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-03-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: noa-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.0.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.0.1
27
+ description: Web application framework for Ruby on Rails
28
+ email:
29
+ - info@jarijokinen.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - .gitignore
35
+ - Gemfile
36
+ - LICENSE.txt
37
+ - README.md
38
+ - Rakefile
39
+ - lib/noa.rb
40
+ - lib/noa/version.rb
41
+ - noa.gemspec
42
+ homepage: https://github.com/jarijokinen/noa
43
+ licenses:
44
+ - MIT
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project: noa
62
+ rubygems_version: 2.0.3
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Web application framework for Ruby on Rails
66
+ test_files: []