diaspora_federation 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,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :diaspora_federation do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,18 @@
1
+ if defined?(RSpec)
2
+ namespace :spec do
3
+ task prepare_db: %w(db:create db:test:load)
4
+ task :prepare_fixtures do
5
+ ENV["NO_COVERAGE"] = "true"
6
+ Rake::Task["spec:generate_fixtures"].invoke
7
+ ENV["NO_COVERAGE"] = "false"
8
+ end
9
+
10
+ desc "Prepare for rspec"
11
+ task prepare: %w(prepare_db prepare_fixtures)
12
+
13
+ desc "Run all specs that generate fixtures for rspec"
14
+ RSpec::Core::RakeTask.new(:generate_fixtures) do |t|
15
+ t.rspec_opts = ["--tag fixture"]
16
+ end
17
+ end
18
+ end
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: diaspora_federation
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Benjamin Neff
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: nokogiri
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.6.6.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.6.6.2
41
+ description: A rails engine that adds the diaspora* federation protocol to a rails
42
+ app
43
+ email:
44
+ - benjamin@coding4.coffee
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - LICENSE
50
+ - README.md
51
+ - Rakefile
52
+ - app/controllers/diaspora_federation/application_controller.rb
53
+ - app/controllers/diaspora_federation/h_card_controller.rb
54
+ - app/controllers/diaspora_federation/receive_controller.rb
55
+ - app/controllers/diaspora_federation/webfinger_controller.rb
56
+ - config/routes.rb
57
+ - lib/diaspora_federation.rb
58
+ - lib/diaspora_federation/engine.rb
59
+ - lib/diaspora_federation/logging.rb
60
+ - lib/diaspora_federation/version.rb
61
+ - lib/diaspora_federation/web_finger.rb
62
+ - lib/diaspora_federation/web_finger/exceptions.rb
63
+ - lib/diaspora_federation/web_finger/h_card.rb
64
+ - lib/diaspora_federation/web_finger/host_meta.rb
65
+ - lib/diaspora_federation/web_finger/web_finger.rb
66
+ - lib/diaspora_federation/web_finger/xrd_document.rb
67
+ - lib/tasks/diaspora_federation_tasks.rake
68
+ - lib/tasks/tests.rake
69
+ homepage: https://github.com/SuperTux88/diaspora_federation
70
+ licenses:
71
+ - AGPL 3.0 - http://www.gnu.org/licenses/agpl-3.0.html
72
+ metadata: {}
73
+ post_install_message:
74
+ rdoc_options: []
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ requirements: []
88
+ rubyforge_project:
89
+ rubygems_version: 2.4.6
90
+ signing_key:
91
+ specification_version: 4
92
+ summary: diaspora* federation rails engine
93
+ test_files: []
94
+ has_rdoc: