multiple_routes 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d58d15be9f25c1f4240af28874ed41bd8f5ec1d5
4
+ data.tar.gz: d582a888341c7d824f6e4cb3fcbc1eded49cc06a
5
+ SHA512:
6
+ metadata.gz: 81e42ac3e9fe3170c487b9ed76a767111835289359ead9cd0e79ef269a7b870df10c5dfd4c03d1286607f920c9e6d1d94640fe4a790d6a6e6461e8b24c842d96
7
+ data.tar.gz: ef6a27032ac1c016c0580d7bbf54b86ae17696b21c798f3272a57528119c8e4055eb5516f0596e909731cebd27dcfb474a92f3bf78d78941c200198886caba3e
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in multiple_routes.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ multiple_routes (0.0.1)
5
+ binding_of_caller
6
+ bitbucket_rest_api (~> 0.1.5)
7
+ parse-ruby-client (~> 0.2.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ binding_of_caller (0.7.2)
13
+ debug_inspector (>= 0.0.1)
14
+ bitbucket_rest_api (0.1.5)
15
+ faraday (~> 0.8.1)
16
+ faraday_middleware (~> 0.9.0)
17
+ hashie (~> 2.0.5)
18
+ multi_json (~> 1.3)
19
+ nokogiri (>= 1.5.2)
20
+ simple_oauth
21
+ debug_inspector (0.0.2)
22
+ faraday (0.8.9)
23
+ multipart-post (~> 1.2.0)
24
+ faraday_middleware (0.9.1)
25
+ faraday (>= 0.7.4, < 0.10)
26
+ hashie (2.0.5)
27
+ iron_core (1.0.3)
28
+ rest (>= 2.6.4)
29
+ iron_mq (5.0.1)
30
+ iron_core (>= 0.5.1)
31
+ mini_portile (0.6.0)
32
+ multi_json (1.10.1)
33
+ multipart-post (1.2.0)
34
+ net-http-persistent (2.9.4)
35
+ netrc (0.7.7)
36
+ nokogiri (1.6.2.1)
37
+ mini_portile (= 0.6.0)
38
+ parse-ruby-client (0.2.0)
39
+ iron_mq
40
+ patron
41
+ patron (0.4.18)
42
+ rake (10.3.2)
43
+ rest (2.7.1)
44
+ net-http-persistent (>= 2.9.1)
45
+ rest_client (>= 1.7.1)
46
+ rest_client (1.7.3)
47
+ netrc (~> 0.7.7)
48
+ simple_oauth (0.2.0)
49
+
50
+ PLATFORMS
51
+ ruby
52
+
53
+ DEPENDENCIES
54
+ bundler (~> 1.3)
55
+ multiple_routes!
56
+ rake
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Pazienti.it
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.
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # MultipleRoutes
2
+ A deploy tracking gem for Ruby on Rails applications, supporting [https://github.com/alessiosantocs/multiple_routesapp](https://github.com/alessiosantocs/multiple_routesapp)
3
+
4
+ Things to do...
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,6 @@
1
+ require "multiple_routes/version"
2
+ require "multiple_routes/initializers/core_ext"
3
+
4
+ module MultipleRoutes
5
+
6
+ end
@@ -0,0 +1,6 @@
1
+ class ActionDispatch::Routing::Mapper
2
+ # Use this method to add routes from separate files
3
+ def draw(routes_name)
4
+ instance_eval(File.read(Rails.root.join("config/routes/#{routes_name}.rb")))
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module MultipleRoutes
2
+ VERSION = "0.0.1"
3
+ end
@@ -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 'multiple_routes/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "multiple_routes"
8
+ spec.version = MultipleRoutes::VERSION
9
+ spec.authors = ["Alessio Santo"]
10
+ spec.email = ["alessio.santo@pazienti.it"]
11
+ spec.description = %q{A deploy tracker}
12
+ spec.summary = %q{A deploy tracker}
13
+ spec.homepage = "https://github.com/alessiosantocs/multiple_routes"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+
18
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ["lib"]
21
+
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ end
25
+
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: multiple_routes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Alessio Santo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ description: A deploy tracker
28
+ email:
29
+ - alessio.santo@pazienti.it
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - Gemfile
35
+ - Gemfile.lock
36
+ - LICENSE.txt
37
+ - README.md
38
+ - Rakefile
39
+ - lib/multiple_routes.rb
40
+ - lib/multiple_routes/initializers/core_ext.rb
41
+ - lib/multiple_routes/version.rb
42
+ - multiple_routes.gemspec
43
+ homepage: https://github.com/alessiosantocs/multiple_routes
44
+ licenses:
45
+ - MIT
46
+ metadata: {}
47
+ post_install_message:
48
+ rdoc_options: []
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ requirements: []
62
+ rubyforge_project:
63
+ rubygems_version: 2.2.2
64
+ signing_key:
65
+ specification_version: 4
66
+ summary: A deploy tracker
67
+ test_files: []